I'm trying to hyphenate words in php. I'm using the example provided by http://php.net/manual/en/function.ps-hyphenate.php
<?php
$word = "Koordinatensystem";
$psdoc = ps_new();
ps_set_parameter($psdoc, "hyphendict", "hyph_de.dic");
$hyphens = ps_hyphenate($psdoc, $word);
for($i=0; $i<strlen($word); $i++) {
echo $word[$i];
if(in_array($i, $hyphens))
echo "-";
}
ps_delete($psdoc);
?>
Through commenting out certain sections, I've found that the problem is
ps_set_parameter($psdoc, "hyphendict", "hyph_de.dic");
Do I need to manually place a hyphenation dictionary? - I've tried placing one from http://www.4shared.com/file/TJnTHVHT/hyph_de.html next to the .php file.
If so where would I need to place it?
Or is there an entirely different problem?
Apparently I had some typo in there. When I setup the example again this morning it just worked. Sorry.