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.

link|improve this question
feedback

closed as too localized by Gumbo Oct 12 '11 at 11:11

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

You should get an error message if the dictionary file could not be found. If you're not getting any errors, try adding ini_set('error_reporting', E_ALL); at the beginning of the script and see if that produces any errors.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.