str.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php namespace System;
  2. class Str {
  3. /**
  4. * Convert HTML characters to entities.
  5. *
  6. * @param string $value
  7. * @return string
  8. */
  9. public static function entities($value)
  10. {
  11. return htmlentities($value, ENT_QUOTES, Config::get('application.encoding'), false);
  12. }
  13. /**
  14. * Convert a string to lowercase.
  15. *
  16. * @param string $value
  17. * @return string
  18. */
  19. public static function lower($value)
  20. {
  21. return function_exists('mb_strtolower') ? mb_strtolower($value, Config::get('application.encoding')) : strtolower($value);
  22. }
  23. /**
  24. * Convert a string to uppercase.
  25. *
  26. * @param string $value
  27. * @return string
  28. */
  29. public static function upper($value)
  30. {
  31. return function_exists('mb_strtoupper') ? mb_strtoupper($value, Config::get('application.encoding')) : strtoupper($value);
  32. }
  33. /**
  34. * Convert a string to title case (ucwords).
  35. *
  36. * @param string $value
  37. * @return string
  38. */
  39. public static function title($value)
  40. {
  41. return (function_exists('mb_convert_case')) ? mb_convert_case($value, MB_CASE_TITLE, Config::get('application.encoding')) : ucwords(strtolower($value));
  42. }
  43. /**
  44. * Get the length of a string.
  45. *
  46. * @param string $value
  47. * @return int
  48. */
  49. public static function length($value)
  50. {
  51. return function_exists('mb_strlen') ? mb_strlen($value, Config::get('application.encoding')) : strlen($value);
  52. }
  53. /**
  54. * Convert a string to 7-bit ASCII.
  55. *
  56. * @param string $value
  57. * @return string
  58. */
  59. public static function ascii($value)
  60. {
  61. $foreign = Config::get('ascii');
  62. $value = preg_replace(array_keys($foreign), array_values($foreign), $value);
  63. return preg_replace('/[^\x09\x0A\x0D\x20-\x7E]/', '', $value);
  64. }
  65. /**
  66. * Generate a random alpha or alpha-numeric string.
  67. *
  68. * Supported types: 'alpha_num' and 'alpha'.
  69. *
  70. * @param int $length
  71. * @param string $type
  72. * @return string
  73. */
  74. public static function random($length = 16, $type = 'alpha_num')
  75. {
  76. $value = '';
  77. $pool_length = strlen($pool = static::pool($type)) - 1;
  78. for ($i = 0; $i < $length; $i++)
  79. {
  80. $value .= $pool[mt_rand(0, $pool_length)];
  81. }
  82. return $value;
  83. }
  84. /**
  85. * Get a character pool.
  86. *
  87. * @param string $type
  88. * @return string
  89. */
  90. private static function pool($type = 'alpha_num')
  91. {
  92. switch ($type)
  93. {
  94. case 'alpha_num':
  95. return '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  96. default:
  97. return 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  98. }
  99. }
  100. }