mwookie Posted July 18, 2007 Share Posted July 18, 2007 Helloe all. I am trying to figure out the best wal to call aspell on a string from PHP. I have contacted my web host about using pspell and they say it a no go. I found this snippet on the web: $temptext= tempnam("/tmp", "spelltext"); $aspellcommand= "cat $temptext | /usr/local/bin/aspell -a"; Basically it is outputting the string to a file and then piping it into aspell. Anything better? Maybe an echo piped? Thanks for all your help. ______________ "You cannot escape the responsibility of tomorrow by evading it today." Abraham Lincoln Company – Projects (New Mexico Homes and Land – Find cheap photos for your website.) Link to comment https://forums.phpfreaks.com/topic/60581-solved-best-way-to-call-aspell-no-pspell-availible/ Share on other sites More sharing options...
trq Posted July 18, 2007 Share Posted July 18, 2007 <?php $s = 'your string here'; $cmd = "echo $s | /usr/local/bin/aspell -a"; echo shell_exec($cmd); ?> Link to comment https://forums.phpfreaks.com/topic/60581-solved-best-way-to-call-aspell-no-pspell-availible/#findComment-301384 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.