Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function makeFriendly($string, $maxLength = null, $delimiter = '-')
 {
     // This allows omitting the max length, but including a delimiter
     if ($maxLength && !is_numeric($maxLength)) {
         $delimiter = $maxLength;
         $maxLength = null;
     }
     $string = $this->htmlDecode($this->utf8Helper->ascii($string));
     $string = strtolower(trim($string));
     $string = str_replace("'", '', $string);
     if (!strlen($delimiter)) {
         $delimiter = '-';
     }
     $delimiterReplacement = strtr($delimiter, array('\\' => '\\\\', '$' => '\\$'));
     $delimiterRegex = preg_quote($delimiter, '#');
     $string = preg_replace('#[^a-z0-9\\-_]+#', $delimiterReplacement, $string);
     $string = preg_replace('#' . $delimiterRegex . '{2,}#', $delimiterReplacement, $string);
     $string = preg_replace('#_-_#', '-', $string);
     $string = preg_replace('#(^' . $delimiterRegex . '+|' . $delimiterRegex . '+$)#D', '', $string);
     $length = strlen($string);
     if ($maxLength && $length > $maxLength) {
         $lastPos = strrpos($string, $delimiter, ($length - $maxLength - 1) * -1);
         if ($lastPos < ceil($maxLength / 2)) {
             $lastPos = $maxLength;
         }
         $string = substr($string, 0, $lastPos);
     }
     return $string;
 }
Beispiel #2
0
 /**
  * This is only for getting the 'length' attribute, to be similar to
  *     JavaScript.
  *
  * @param string $name Key to get value of. Only `length` is accepted.
  *
  * @return mixed The length of the array or null if the key is invalid.
  */
 public function __get($name)
 {
     if ($name == 'length') {
         return static::$helper->length($this->string);
     }
     return null;
 }
Beispiel #3
0
 /**
  * {@inheritdoc}
  *
  * @link http://tartarus.org/~martin/PorterStemmer/
  */
 public function stem($word)
 {
     if (isset($this->cache['stem'][$word])) {
         return $this->cache['stem'][$word];
     }
     $original = $word;
     $sV = '^([^aeiou][^aeiouy]*)?[aeiouy]';
     $mgr0 = $sV . '[aeiou]*[^aeiou][^aeiouy]*';
     $sVRegex = '#' . $sV . '#';
     $mgr0Regex = '#' . $mgr0 . '#';
     $meq1Regex = '#' . $mgr0 . '([aeiouy][aeiou]*)?$#';
     $mgr1Regex = '#' . $mgr0 . '[aeiouy][aeiou]*[^aeiou][^aeiouy]*#';
     $word = $this->utf8->ascii($word);
     $word = strtolower($word);
     if (strlen($word) < 3) {
         return $word;
     }
     if ($word[0] == 'y') {
         $word = 'Y' . substr($word, 1);
     }
     // Step 1a
     $word = preg_replace('#^(.+?)(?:(ss|i)es|([^s])s)$#', '\\1\\2\\3', $word);
     // Step 1b
     if (preg_match('#^(.+?)eed$#', $word, $match)) {
         if (preg_match($mgr0Regex, $match[1])) {
             $word = substr($word, 0, -1);
         }
     } else {
         if (preg_match('#^(.+?)(ed|ing)$#', $word, $match)) {
             if (preg_match($sVRegex, $match[1])) {
                 $word = $match[1];
                 if (preg_match('#(at|bl|iz)$#', $word)) {
                     $word .= 'e';
                 } else {
                     if (preg_match('#([^aeiouylsz])\\1$#', $word)) {
                         $word = substr($word, 0, -1);
                     } else {
                         if (preg_match('#^[^aeiou][^aeiouy]*[aeiouy][^aeiouwxy]$#', $word)) {
                             $word .= 'e';
                         }
                     }
                 }
             }
         }
     }
     // Step 1c
     if (substr($word, -1) == 'y') {
         $stem = substr($word, 0, -1);
         if (preg_match($sVRegex, $stem)) {
             $word = $stem . 'i';
         }
     }
     // Step 2
     if (preg_match('#^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$#', $word, $match)) {
         if (preg_match($mgr0Regex, $match[1])) {
             $word = $match[1] . strtr($match[2], array('ational' => 'ate', 'tional' => 'tion', 'enci' => 'ence', 'anci' => 'ance', 'izer' => 'ize', 'bli' => 'ble', 'alli' => 'al', 'entli' => 'ent', 'eli' => 'e', 'ousli' => 'ous', 'ization' => 'ize', 'ation' => 'ate', 'ator' => 'ate', 'alism' => 'al', 'iveness' => 'ive', 'fulness' => 'ful', 'ousness' => 'ous', 'aliti' => 'al', 'iviti' => 'ive', 'biliti' => 'ble', 'logi' => 'log'));
         }
     }
     // Step 3
     if (preg_match('#^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$#', $word, $match)) {
         if (preg_match($mgr0Regex, $match[1])) {
             $word = $match[1] . strtr($match[2], array('icate' => 'ic', 'ative' => '', 'alize' => 'al', 'iciti' => 'ic', 'ical' => 'ic', 'ful' => '', 'ness' => ''));
         }
     }
     // Step 4
     if (preg_match('#^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize|(?<=[st])ion)$#', $word, $match) && preg_match($mgr1Regex, $match[1])) {
         $word = $match[1];
     }
     // Step 5
     if (substr($word, -1) == 'e') {
         $stem = substr($word, 0, -1);
         if (preg_match($mgr1Regex, $stem)) {
             $word = $stem;
         } else {
             if (preg_match($meq1Regex, $stem) && !preg_match('#^[^aeiou][^aeiouy]*[aeiouy][^aeiouwxy]$#', $stem)) {
                 $word = $stem;
             }
         }
     }
     if (preg_match('#ll$#', $word) && preg_match($mgr1Regex, $word)) {
         $word = substr($word, 0, -1);
     }
     if ($word[0] == 'Y') {
         $word = 'y' . substr($word, 1);
     }
     $this->cache['stem'][$original] = $word;
     return $word;
 }