Home
last modified time | relevance | path

Searched refs:charMin (Results 1 – 1 of 1) sorted by relevance

/plugin/hyphenation/phpHyphenation/
H A DphpHyphenation.class.php18 protected $charMin = 2; variable in phpHyphenation
70 * @param int $charMin Minimum letters a word must have to be hyphenated (default: 2)
73 public function setConstraints($leftMin=2, $rightMin=2, $charMin=2, $charMax=10) { argument
76 $this->charMin = $charMin;
211 if(mb_strlen($word) < $this->charMin) return $word;
222 for ($position=0; $position<=($word_length-$this->charMin); $position++) {
225 for ($win=$this->charMin; $win<=$maxwins; $win++) {