str.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php namespace Laravel;
  2. class Str {
  3. /**
  4. * Convert a string to lowercase.
  5. *
  6. * <code>
  7. * // Convert a string to lowercase
  8. * echo Str::lower('STOP YELLING');
  9. *
  10. * // Convert a UTF-8 string to lowercase
  11. * echo Str::lower('Τάχιστη');
  12. * </code>
  13. *
  14. * @param string $value
  15. * @return string
  16. */
  17. public static function lower($value)
  18. {
  19. if (function_exists('mb_strtolower'))
  20. {
  21. return mb_strtolower($value, Config::get('application.encoding'));
  22. }
  23. return strtolower($value);
  24. }
  25. /**
  26. * Convert a string to uppercase.
  27. *
  28. * <code>
  29. * // Convert a string to uppercase
  30. * echo Str::upper('speak louder');
  31. *
  32. * // Convert a UTF-8 string to uppercase
  33. * echo Str::upper('Τάχιστη');
  34. * </code>
  35. *
  36. * @param string $value
  37. * @return string
  38. */
  39. public static function upper($value)
  40. {
  41. if (function_exists('mb_strtoupper'))
  42. {
  43. return mb_strtoupper($value, Config::get('application.encoding'));
  44. }
  45. return strtoupper($value);
  46. }
  47. /**
  48. * Convert a string to title case (ucwords equivalent).
  49. *
  50. * <code>
  51. * // Convert a string to title case
  52. * echo Str::title('taylor otwell');
  53. *
  54. * // Convert a UTF-8 string to title case
  55. * echo Str::title('Τάχιστη αλώπηξ');
  56. * </code>
  57. *
  58. * @param string $value
  59. * @return string
  60. */
  61. public static function title($value)
  62. {
  63. if (function_exists('mb_convert_case'))
  64. {
  65. return mb_convert_case($value, MB_CASE_TITLE, Config::get('application.encoding'));
  66. }
  67. return ucwords(strtolower($value));
  68. }
  69. /**
  70. * Get the length of a string.
  71. *
  72. * <code>
  73. * // Get the length of a string
  74. * echo Str::length('taylor otwell');
  75. *
  76. * // Get the length of a UTF-8 string
  77. * echo Str::length('Τάχιστη αλώπηξ');
  78. * </code>
  79. *
  80. * @param string $value
  81. * @return int
  82. */
  83. public static function length($value)
  84. {
  85. if (function_exists('mb_strlen'))
  86. {
  87. return mb_strlen($value, Config::get('application.encoding'));
  88. }
  89. return strlen($value);
  90. }
  91. /**
  92. * Limit the number of characters in a string.
  93. *
  94. * <code>
  95. * // Returns "Tay..."
  96. * echo Str::limit('Taylor Otwell', 3);
  97. *
  98. * // Limit the number of characters and append a custom ending
  99. * echo Str::limit('Taylor Otwell', 3, '---');
  100. * </code>
  101. *
  102. * @param string $value
  103. * @param int $limit
  104. * @param string $end
  105. * @return string
  106. */
  107. public static function limit($value, $limit = 100, $end = '...')
  108. {
  109. if (static::length($value) <= $limit) return $value;
  110. if (function_exists('mb_substr'))
  111. {
  112. return mb_substr($value, 0, $limit, Config::get('application.encoding')).$end;
  113. }
  114. return substr($value, 0, $limit).$end;
  115. }
  116. /**
  117. * Limit the number of words in a string
  118. *
  119. * <code>
  120. * // Returns "This is a..."
  121. * echo Str::words('This is a sentence.', 3);
  122. *
  123. * // Limit the number of words and append a custom ending
  124. * echo Str::words('This is a sentence.', 3, '---');
  125. * </code>
  126. *
  127. * @param string $value
  128. * @param int $length
  129. * @param string $end
  130. * @return string
  131. */
  132. public static function words($value, $words = 100, $end = '...')
  133. {
  134. $count = str_word_count($value, 1);
  135. if ($count <= $words) return $value;
  136. return implode(' ', array_slice($count, 0, $words)).$end;
  137. }
  138. /**
  139. * Convert a string to 7-bit ASCII.
  140. *
  141. * <code>
  142. * // Returns "Deuxieme Article"
  143. * echo Str::ascii('Deuxième Article');
  144. * </code>
  145. *
  146. * @param string $value
  147. * @return string
  148. */
  149. public static function ascii($value)
  150. {
  151. $foreign = Config::get('ascii');
  152. $value = preg_replace(array_keys($foreign), array_values($foreign), $value);
  153. return preg_replace('/[^\x09\x0A\x0D\x20-\x7E]/', '', $value);
  154. }
  155. /**
  156. * Generate a random alpha or alpha-numeric string.
  157. *
  158. * <code>
  159. * // Generate a 40 character random, alpha-numeric string
  160. * echo Str::random(40);
  161. *
  162. * // Generate a 16 character random, alphabetic string
  163. * echo Str::random(16, 'alpha');
  164. * <code>
  165. *
  166. * @param int $length
  167. * @param string $type
  168. * @return string
  169. */
  170. public static function random($length, $type = 'alnum')
  171. {
  172. return substr(str_shuffle(str_repeat(static::pool($type), 5)), 0, $length);
  173. }
  174. /**
  175. * Get the character pool for a given type of random string.
  176. *
  177. * @param string $type
  178. * @return string
  179. */
  180. protected static function pool($type)
  181. {
  182. switch ($type)
  183. {
  184. case 'alpha':
  185. return 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  186. case 'alnum':
  187. return '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  188. default:
  189. throw new \Exception("Invalid random string type [$type].");
  190. }
  191. }
  192. }