You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.6 KiB
87 lines
2.6 KiB
13 years ago
|
<?php
|
||
|
/**
|
||
|
* Text helper class file.
|
||
|
*
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright © 2008-2012 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\util;
|
||
|
|
||
|
/**
|
||
|
* Text helper
|
||
|
*
|
||
13 years ago
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
|
* @author Alex Makarov <sam@rmcreative.ru>
|
||
13 years ago
|
* @since 2.0
|
||
|
*/
|
||
13 years ago
|
class StringHelper
|
||
13 years ago
|
{
|
||
|
/**
|
||
|
* Converts a word to its plural form.
|
||
13 years ago
|
* Note that this is for English only!
|
||
|
* For example, 'apple' will become 'apples', and 'child' will become 'children'.
|
||
13 years ago
|
* @param string $name the word to be pluralized
|
||
|
* @return string the pluralized word
|
||
|
*/
|
||
13 years ago
|
public static function pluralize($name)
|
||
13 years ago
|
{
|
||
13 years ago
|
$rules = array(
|
||
13 years ago
|
'/move$/i' => 'moves',
|
||
|
'/foot$/i' => 'feet',
|
||
|
'/child$/i' => 'children',
|
||
|
'/human$/i' => 'humans',
|
||
|
'/man$/i' => 'men',
|
||
|
'/tooth$/i' => 'teeth',
|
||
|
'/person$/i' => 'people',
|
||
|
'/([m|l])ouse$/i' => '\1ice',
|
||
13 years ago
|
'/(x|ch|ss|sh|us|as|is|os)$/i' => '\1es',
|
||
13 years ago
|
'/([^aeiouy]|qu)y$/i' => '\1ies',
|
||
13 years ago
|
'/(?:([^f])fe|([lr])f)$/i' => '\1\2ves',
|
||
13 years ago
|
'/(shea|lea|loa|thie)f$/i' => '\1ves',
|
||
|
'/([ti])um$/i' => '\1a',
|
||
|
'/(tomat|potat|ech|her|vet)o$/i' => '\1oes',
|
||
|
'/(bu)s$/i' => '\1ses',
|
||
|
'/(ax|test)is$/i' => '\1es',
|
||
13 years ago
|
'/s$/' => 's',
|
||
|
);
|
||
13 years ago
|
foreach ($rules as $rule => $replacement) {
|
||
13 years ago
|
if (preg_match($rule, $name)) {
|
||
|
return preg_replace($rule, $replacement, $name);
|
||
|
}
|
||
13 years ago
|
}
|
||
13 years ago
|
return $name . 's';
|
||
|
}
|
||
|
|
||
13 years ago
|
/**
|
||
13 years ago
|
* Converts a CamelCase name into space-separated words.
|
||
|
* For example, 'PostTag' will be converted to 'Post Tag'.
|
||
13 years ago
|
* @param string $name the string to be converted
|
||
|
* @param boolean $ucwords whether to capitalize the first letter in each word
|
||
|
* @return string the resulting words
|
||
|
*/
|
||
13 years ago
|
public static function camel2words($name, $ucwords = true)
|
||
13 years ago
|
{
|
||
|
$label = trim(strtolower(str_replace(array('-', '_', '.'), ' ', preg_replace('/(?<![A-Z])[A-Z]/', ' \0', $name))));
|
||
|
return $ucwords ? ucwords($label) : $label;
|
||
|
}
|
||
|
|
||
|
/**
|
||
13 years ago
|
* Converts a CamelCase name into an ID in lowercase.
|
||
|
* Words in the ID may be concatenated using the specified character (defaults to '-').
|
||
|
* For example, 'PostTag' will be converted to 'post-tag'.
|
||
13 years ago
|
* @param string $name the string to be converted
|
||
13 years ago
|
* @param string $separator the character used to concatenate the words in the ID
|
||
13 years ago
|
* @return string the resulting ID
|
||
|
*/
|
||
13 years ago
|
public static function camel2id($name, $separator = '-')
|
||
13 years ago
|
{
|
||
13 years ago
|
if ($separator === '_') {
|
||
|
return trim(strtolower(preg_replace('/(?<![A-Z])[A-Z]/', '_\0', $name)), '_');
|
||
|
} else {
|
||
|
return trim(strtolower(str_replace('_', $separator, preg_replace('/(?<![A-Z])[A-Z]/', $separator . '\0', $name))), $separator);
|
||
|
}
|
||
13 years ago
|
}
|
||
|
}
|