text.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. // -----------------------------------------------------
  14. // If the value is an empty string, bail out.
  15. // -----------------------------------------------------
  16. if (trim($value) == '')
  17. {
  18. return $value;
  19. }
  20. // -----------------------------------------------------
  21. // Limit the words in the string.
  22. // -----------------------------------------------------
  23. preg_match('/^\s*+(?:\S++\s*+){1,'.$limit.'}/', $value, $matches);
  24. // -----------------------------------------------------
  25. // If the string did not exceed the limit, we won't
  26. // need an ending character.
  27. // -----------------------------------------------------
  28. if (strlen($value) == strlen($matches[0]))
  29. {
  30. $end = '';
  31. }
  32. // -----------------------------------------------------
  33. // Add the ending character to the string.
  34. // -----------------------------------------------------
  35. return rtrim($matches[0]).$end;
  36. }
  37. /**
  38. * Limit the number of characters in a string. Word integrity will be preserved.
  39. *
  40. * @param string $value
  41. * @param int $limit
  42. * @param string $end
  43. * @return string
  44. */
  45. public static function characters($value, $limit, $end = '&#8230;')
  46. {
  47. // -----------------------------------------------------
  48. // If the value does not exceed the limit, bail out.
  49. // -----------------------------------------------------
  50. if (strlen($value) < $limit)
  51. {
  52. return $value;
  53. }
  54. // -----------------------------------------------------
  55. // Replace new lines and whitespace in the string.
  56. // -----------------------------------------------------
  57. $value = preg_replace("/\s+/", ' ', str_replace(array("\r\n", "\r", "\n"), ' ', $value));
  58. // -----------------------------------------------------
  59. // If the value does not exceed the limit, bail out.
  60. // -----------------------------------------------------
  61. if (strlen($value) <= $limit)
  62. {
  63. return $value;
  64. }
  65. // -----------------------------------------------------
  66. // Initialize the output string.
  67. // -----------------------------------------------------
  68. $out = '';
  69. // -----------------------------------------------------
  70. // The string exceeds the character limit. Add each word
  71. // to the output individually until we reach the limit.
  72. // -----------------------------------------------------
  73. foreach (explode(' ', trim($value)) as $val)
  74. {
  75. // -----------------------------------------------------
  76. // Add the word to the output.
  77. // -----------------------------------------------------
  78. $out .= $val.' ';
  79. // -----------------------------------------------------
  80. // Check the output length.
  81. // -----------------------------------------------------
  82. if (strlen($out) >= $limit)
  83. {
  84. // -----------------------------------------------------
  85. // Trim the output.
  86. // -----------------------------------------------------
  87. $out = trim($out);
  88. // -----------------------------------------------------
  89. // Add the ending character to the string.
  90. // -----------------------------------------------------
  91. return (strlen($out) == strlen($value)) ? $out : $out.$end;
  92. }
  93. }
  94. }
  95. /**
  96. * Censor a string.
  97. *
  98. * @param string $value
  99. * @param array $censored
  100. * @param string $replacement
  101. * @return string
  102. */
  103. public static function censor($value, $censored, $replacement = '####')
  104. {
  105. // -----------------------------------------------------
  106. // Pad the value with spaces.
  107. // -----------------------------------------------------
  108. $value = ' '.$value.' ';
  109. // -----------------------------------------------------
  110. // Assume the word will be book-ended by the following.
  111. // -----------------------------------------------------
  112. $delim = '[-_\'\"`(){}<>\[\]|!?@#%&,.:;^~*+=\/ 0-9\n\r\t]';
  113. // -----------------------------------------------------
  114. // Replace the censored words.
  115. // -----------------------------------------------------
  116. foreach ($censored as $word)
  117. {
  118. if ($replacement != '')
  119. {
  120. $value = preg_replace("/({$delim})(".str_replace('\*', '\w*?', preg_quote($word, '/')).")({$delim})/i", "\\1{$replacement}\\3", $value);
  121. }
  122. else
  123. {
  124. $value = preg_replace("/({$delim})(".str_replace('\*', '\w*?', preg_quote($word, '/')).")({$delim})/ie", "'\\1'.str_repeat('#', strlen('\\2')).'\\3'", $value);
  125. }
  126. }
  127. return trim($value);
  128. }
  129. }