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.) Quote Link to comment 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); ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.