text.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php namespace System;
  2. class Text {
  3. /**
  4. * Limit the words in a string. Word integrity will be preserved.
  5. *
  6. * @param string $value
  7. * @param int $limit
  8. * @param string $end
  9. * @return string
  10. */
  11. public static function words($value, $limit, $end = '&#8230;')
  12. {
  13. if (trim($value) == '')
  14. {
  15. return $value;
  16. }
  17. // -----------------------------------------------------
  18. // Limit the words in the string.
  19. // -----------------------------------------------------
  20. preg_match('/^\s*+(?:\S++\s*+){1,'.$limit.'}/', $value, $matches);
  21. // -----------------------------------------------------
  22. // If the string did not exceed the limit, we won't
  23. // need an ending character.
  24. // -----------------------------------------------------
  25. if (strlen($value) == strlen($matches[0]))
  26. {
  27. $end = '';
  28. }
  29. return rtrim($matches[0]).$end;
  30. }
  31. /**
  32. * Limit the number of characters in a string. Word integrity will be preserved.
  33. *
  34. * @param string $value
  35. * @param int $limit
  36. * @param string $end
  37. * @return string
  38. */
  39. public static function characters($value, $limit, $end = '&#8230;')
  40. {
  41. if (strlen($value) < $limit)
  42. {
  43. return $value;
  44. }
  45. // -----------------------------------------------------
  46. // Replace new lines and whitespace in the string.
  47. // -----------------------------------------------------
  48. $value = preg_replace("/\s+/", ' ', str_replace(array("\r\n", "\r", "\n"), ' ', $value));
  49. if (strlen($value) <= $limit)
  50. {
  51. return $value;
  52. }
  53. $out = '';
  54. // -----------------------------------------------------
  55. // The string exceeds the character limit. Add each word
  56. // to the output individually until we reach the limit.
  57. // -----------------------------------------------------
  58. foreach (explode(' ', trim($value)) as $val)
  59. {
  60. $out .= $val.' ';
  61. if (strlen($out) >= $limit)
  62. {
  63. $out = trim($out);
  64. return (strlen($out) == strlen($value)) ? $out : $out.$end;
  65. }
  66. }
  67. }
  68. /**
  69. * Censor a string.
  70. *
  71. * @param string $value
  72. * @param array $censored
  73. * @param string $replacement
  74. * @return string
  75. */
  76. public static function censor($value, $censored, $replacement = '####')
  77. {
  78. $value = ' '.$value.' ';
  79. // -----------------------------------------------------
  80. // Assume the word will be book-ended by the following.
  81. // -----------------------------------------------------
  82. $delim = '[-_\'\"`(){}<>\[\]|!?@#%&,.:;^~*+=\/ 0-9\n\r\t]';
  83. // -----------------------------------------------------
  84. // Replace the censored words.
  85. // -----------------------------------------------------
  86. foreach ($censored as $word)
  87. {
  88. if ($replacement != '')
  89. {
  90. $value = preg_replace("/({$delim})(".str_replace('\*', '\w*?', preg_quote($word, '/')).")({$delim})/i", "\\1{$replacement}\\3", $value);
  91. }
  92. else
  93. {
  94. $value = preg_replace("/({$delim})(".str_replace('\*', '\w*?', preg_quote($word, '/')).")({$delim})/ie", "'\\1'.str_repeat('#', strlen('\\2')).'\\3'", $value);
  95. }
  96. }
  97. return trim($value);
  98. }
  99. }