str.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. * Word integrity is preserved, so the number of characters in the
  95. * truncated string will be rounded to the nearest word ending.
  96. *
  97. * <code>
  98. * // Returns "Taylor..."
  99. * echo Str::limit('Taylor Otwell', 3);
  100. *
  101. * // Limit the number of characters and append a custom ending
  102. * echo Str::limit('Taylor Otwell', 3, '---');
  103. * </code>
  104. *
  105. * @param string $value
  106. * @param int $length
  107. * @param string $end
  108. * @return string
  109. */
  110. public static function limit($value, $limit = 100, $end = '...')
  111. {
  112. if (static::length($value) < $limit) return $value;
  113. $limit = preg_replace('/\s+?(\S+)?$/', '', substr($value, 0, $limit));
  114. return (static::length($limit) == static::length($value)) ? $value : $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. $pool = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  173. return substr(str_shuffle(str_repeat(($type == 'alnum') ? $pool.'0123456789' : $pool, 5)), 0, $length);
  174. }
  175. }