Text.php 2.3 KB
Newer Older
Alexander Makarov committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php
/**
 * Text helper class file.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @author Alex Makarov <sam@rmcreative.ru>
 * @link http://www.yiiframework.com/
 * @copyright Copyright &copy; 2008-2012 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\util;

/**
 * Text helper
 *
Qiang Xue committed
17 18
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @author Alex Makarov <sam@rmcreative.ru>
Alexander Makarov committed
19 20 21 22 23 24
 * @since 2.0
 */
class Text
{
	/**
	 * Converts a word to its plural form.
25 26
	 * Note that this is for English only!
	 * For example, 'apple' will become 'apples', and 'child' will become 'children'.
Alexander Makarov committed
27 28 29
	 * @param string $name the word to be pluralized
	 * @return string the pluralized word
	 */
Qiang Xue committed
30
	public static function pluralize($name)
Alexander Makarov committed
31
	{
Qiang Xue committed
32
		$rules = array(
33 34 35 36 37 38 39 40
			'/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',
Alexander Makarov committed
41
			'/(x|ch|ss|sh|us|as|is|os)$/i' => '\1es',
42
			'/([^aeiouy]|qu)y$/i' => '\1ies',
Alexander Makarov committed
43
			'/(?:([^f])fe|([lr])f)$/i' => '\1\2ves',
44 45 46 47 48
			'/(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',
Alexander Makarov committed
49 50
			'/s$/' => 's',
		);
51
		foreach ($rules as $rule => $replacement) {
Qiang Xue committed
52 53 54
			if (preg_match($rule, $name)) {
				return preg_replace($rule, $replacement, $name);
			}
Alexander Makarov committed
55
		}
Qiang Xue committed
56 57 58
		return $name . 's';
	}

Qiang Xue committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
	/**
	 * Converts a class name into space-separated words.
	 * For example, 'PostTag' will be converted as 'Post Tag'.
	 * @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
	 */
	public static function name2words($name, $ucwords = true)
	{
		$label = trim(strtolower(str_replace(array('-', '_', '.'), ' ', preg_replace('/(?<![A-Z])[A-Z]/', ' \0', $name))));
		return $ucwords ? ucwords($label) : $label;
	}

	/**
	 * Converts a class name into a HTML ID.
	 * For example, 'PostTag' will be converted as 'post-tag'.
	 * @param string $name the string to be converted
	 * @return string the resulting ID
	 */
	public static function name2id($name)
Qiang Xue committed
79
	{
80
		return trim(strtolower(str_replace('_', '-', preg_replace('/(?<![A-Z])[A-Z]/', '-\0', $name))), '-');
Alexander Makarov committed
81 82
	}
}