str.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. * Generate a random alpha or alpha-numeric string.
  55. *
  56. * Supported types: 'alpha_num' and 'alpha'.
  57. *
  58. * @param int $length
  59. * @param string $type
  60. * @return string
  61. */
  62. public static function random($length = 16, $type = 'alpha_num')
  63. {
  64. $value = '';
  65. $pool_length = strlen($pool = static::pool($type)) - 1;
  66. for ($i = 0; $i < $length; $i++)
  67. {
  68. $value .= $pool[mt_rand(0, $pool_length)];
  69. }
  70. return $value;
  71. }
  72. /**
  73. * Get a chracter pool.
  74. *
  75. * @param string $type
  76. * @return string
  77. */
  78. private static function pool($type = 'alpha_num')
  79. {
  80. switch ($type)
  81. {
  82. case 'alpha_num':
  83. return '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  84. default:
  85. return 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  86. }
  87. }
  88. }