str.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. <?php namespace Laravel;
  2. class Str {
  3. /**
  4. * Get the default string encoding for the application.
  5. *
  6. * This method is simply a short-cut to Config::get('application.encoding').
  7. *
  8. * @return string
  9. */
  10. public static function encoding()
  11. {
  12. return Config::get('application.encoding');
  13. }
  14. /**
  15. * Get the length of a string.
  16. *
  17. * <code>
  18. * // Get the length of a string
  19. * $length = Str::length('Taylor Otwell');
  20. *
  21. * // Get the length of a multi-byte string
  22. * $length = Str::length('Τάχιστη')
  23. * </code>
  24. *
  25. * @param string $value
  26. * @return int
  27. */
  28. public static function length($value)
  29. {
  30. return (MB_STRING) ? mb_strlen($value, static::encoding()) : strlen($value);
  31. }
  32. /**
  33. * Convert a string to lowercase.
  34. *
  35. * <code>
  36. * // Convert a string to lowercase
  37. * $lower = Str::lower('Taylor Otwell');
  38. *
  39. * // Convert a multi-byte string to lowercase
  40. * $lower = Str::lower('Τάχιστη');
  41. * </code>
  42. *
  43. * @param string $value
  44. * @return string
  45. */
  46. public static function lower($value)
  47. {
  48. return (MB_STRING) ? mb_strtolower($value, static::encoding()) : strtolower($value);
  49. }
  50. /**
  51. * Convert a string to uppercase.
  52. *
  53. * <code>
  54. * // Convert a string to uppercase
  55. * $upper = Str::upper('Taylor Otwell');
  56. *
  57. * // Convert a multi-byte string to uppercase
  58. * $upper = Str::upper('Τάχιστη');
  59. * </code>
  60. *
  61. * @param string $value
  62. * @return string
  63. */
  64. public static function upper($value)
  65. {
  66. return (MB_STRING) ? mb_strtoupper($value, static::encoding()) : strtoupper($value);
  67. }
  68. /**
  69. * Convert a string to title case (ucwords equivalent).
  70. *
  71. * <code>
  72. * // Convert a string to title case
  73. * $title = Str::title('taylor otwell');
  74. *
  75. * // Convert a multi-byte string to title case
  76. * $title = Str::title('νωθρού κυνός');
  77. * </code>
  78. *
  79. * @param string $value
  80. * @return string
  81. */
  82. public static function title($value)
  83. {
  84. if (MB_STRING)
  85. {
  86. return mb_convert_case($value, MB_CASE_TITLE, static::encoding());
  87. }
  88. return ucwords(strtolower($value));
  89. }
  90. /**
  91. * Limit the number of characters in a string.
  92. *
  93. * <code>
  94. * // Returns "Tay..."
  95. * echo Str::limit('Taylor Otwell', 3);
  96. *
  97. * // Limit the number of characters and append a custom ending
  98. * echo Str::limit('Taylor Otwell', 3, '---');
  99. * </code>
  100. *
  101. * @param string $value
  102. * @param int $limit
  103. * @param string $end
  104. * @return string
  105. */
  106. public static function limit($value, $limit = 100, $end = '...')
  107. {
  108. if (static::length($value) <= $limit) return $value;
  109. if (MB_STRING)
  110. {
  111. return mb_substr($value, 0, $limit, static::encoding()).$end;
  112. }
  113. return substr($value, 0, $limit).$end;
  114. }
  115. /**
  116. * Get the singular form of the given word.
  117. *
  118. * The word should be defined in the "strings" configuration file.
  119. *
  120. * @param string $value
  121. * @return string
  122. */
  123. public static function singular($value)
  124. {
  125. $inflection = Config::get('strings.inflection');
  126. $singular = array_get(array_flip($inflection), strtolower($value), $value);
  127. return (ctype_upper($value[0])) ? static::title($singular) : $singular;
  128. }
  129. /**
  130. * Get the plural form of the given word.
  131. *
  132. * The word should be defined in the "strings" configuration file.
  133. *
  134. * <code>
  135. * // Returns the plural form of "child"
  136. * $plural = Str::plural('child', 10);
  137. *
  138. * // Returns the singular form of "octocat" since count is one
  139. * $plural = Str::plural('octocat', 1);
  140. * </code>
  141. *
  142. * @param string $value
  143. * @param int $count
  144. * @return string
  145. */
  146. public static function plural($value, $count = 2)
  147. {
  148. if ((int) $count == 1) return $value;
  149. $plural = array_get(Config::get('strings.inflection'), strtolower($value), $value);
  150. return (ctype_upper($value[0])) ? static::title($plural) : $plural;
  151. }
  152. /**
  153. * Limit the number of words in a string.
  154. *
  155. * <code>
  156. * // Returns "This is a..."
  157. * echo Str::words('This is a sentence.', 3);
  158. *
  159. * // Limit the number of words and append a custom ending
  160. * echo Str::words('This is a sentence.', 3, '---');
  161. * </code>
  162. *
  163. * @param string $value
  164. * @param int $words
  165. * @param string $end
  166. * @return string
  167. */
  168. public static function words($value, $words = 100, $end = '...')
  169. {
  170. preg_match('/^\s*+(?:\S++\s*+){1,'.$words.'}/', $value, $matches);
  171. if (static::length($value) == static::length($matches[0]))
  172. {
  173. $end = '';
  174. }
  175. return rtrim($matches[0]).$end;
  176. }
  177. /**
  178. * Generate a URL friendly "slug" from a given string.
  179. *
  180. * <code>
  181. * // Returns "this-is-my-blog-post"
  182. * $slug = Str::slug('This is my blog post!');
  183. *
  184. * // Returns "this_is_my_blog_post"
  185. * $slug = Str::slug('This is my blog post!', '_');
  186. * </code>
  187. *
  188. * @param string $title
  189. * @param string $separator
  190. * @return string
  191. */
  192. public static function slug($title, $separator = '-')
  193. {
  194. $title = static::ascii($title);
  195. // Remove all characters that are not the separator, letters, numbers, or whitespace.
  196. $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', static::lower($title));
  197. // Replace all separator characters and whitespace by a single separator
  198. $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
  199. return trim($title, $separator);
  200. }
  201. /**
  202. * Convert a string to 7-bit ASCII.
  203. *
  204. * This is helpful for converting UTF-8 strings for usage in URLs, etc.
  205. *
  206. * @param string $value
  207. * @return string
  208. */
  209. public static function ascii($value)
  210. {
  211. $foreign = Config::get('strings.ascii');
  212. $value = preg_replace(array_keys($foreign), array_values($foreign), $value);
  213. return preg_replace('/[^\x09\x0A\x0D\x20-\x7E]/', '', $value);
  214. }
  215. /**
  216. * Convert a string to an underscored, camel-cased class name.
  217. *
  218. * This method is primarily used to format task and controller names.
  219. *
  220. * <code>
  221. * // Returns "Task_Name"
  222. * $class = Str::classify('task_name');
  223. *
  224. * // Returns "Taylor_Otwell"
  225. * $class = Str::classify('taylor otwell')
  226. * </code>
  227. *
  228. * @param string $value
  229. * @return string
  230. */
  231. public static function classify($value)
  232. {
  233. $search = array('_', '-', '.');
  234. return str_replace(' ', '_', static::title(str_replace($search, ' ', $value)));
  235. }
  236. /**
  237. * Return the "URI" style segments in a given string.
  238. *
  239. * @param string $value
  240. * @return array
  241. */
  242. public static function segments($value)
  243. {
  244. return array_diff(explode('/', trim($value, '/')), array(''));
  245. }
  246. /**
  247. * Generate a random alpha or alpha-numeric string.
  248. *
  249. * <code>
  250. * // Generate a 40 character random alpha-numeric string
  251. * echo Str::random(40);
  252. *
  253. * // Generate a 16 character random alphabetic string
  254. * echo Str::random(16, 'alpha');
  255. * <code>
  256. *
  257. * @param int $length
  258. * @param string $type
  259. * @return string
  260. */
  261. public static function random($length, $type = 'alnum')
  262. {
  263. return substr(str_shuffle(str_repeat(static::pool($type), 5)), 0, $length);
  264. }
  265. /**
  266. * Get the character pool for a given type of random string.
  267. *
  268. * @param string $type
  269. * @return string
  270. */
  271. protected static function pool($type)
  272. {
  273. switch ($type)
  274. {
  275. case 'alpha':
  276. return 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  277. case 'alnum':
  278. return '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  279. default:
  280. throw new \Exception("Invalid random string type [$type].");
  281. }
  282. }
  283. }