php關鍵字替換的類別(避免重複替換,保留與還原原始連結)

WBOY
發布: 2016-07-25 08:57:31
原創
1163 人瀏覽過
  1. /*

  2. * 關鍵字匹配類別
  3. * @author ylx * @author ylx
  4. * @packet mipang
  5. * 使用實例
  6. * $str = "綠殼蛋雞撒范德薩下一年,下一年1的灑落開房間盧卡斯地方軍";
  7. * $key = new KeyReplace($str,array("xxxx"=>"sadf","下一年1"=>'http://baidu.com',"下一年"=>'google. com'));
  8. * echo $key->getResultText();
  9. * echo $key->getRuntime();
  10. */
  11. class KeyReplace
  12. {
  13. private $ keys = array();
  14. private $text = "";
  15. private $runtime = 0;
  16. private $url = true;
  17. private $stopkeys = array();
  18. private $private $ all = false;
  19. /**
  20. * @access public
  21. * @param string $text 指定被處理的文章
  22. * @param array $keys 指定字典詞組array(key=>url,...) url可以是數組,如果是數組將隨機替換其中的一個
  23. * @param array $stopkeys 指定停止詞array(key,...) 這裡面的詞將不會被處理
  24. * @param boolean $url true 表示替換成連結否則只替換
  25. * @param boolean $all tr​​ue 表示替換所有找到的詞,否則只替換第一次
  26. */
  27. public function __construct($text='',$keys=array(),$url=true,$stopkeys=array(),$all= false) {
  28. $this->keys = $keys;
  29. $this->text = $text;
  30. $this->url = $url;
  31. $this->stopkeys = $stopkeys ;
  32. $this->all = $all;
  33. }
  34. /**

  35. * 取得處理好的文章
  36. * @access public
  37. * @return string text
  38. */
  39. public function getResultText() {
  40. $start = microtime(true);
  41. $keys = $this->hits_keys();
  42. $keys_tmp = array_keys($keys);

  43. function cmp ($a, $b){

  44. if (mb_strlen($a) == mb_strlen($b)) {
  45. return 0;
  46. }
  47. return (mb_strlen($a) }
  48. usort($keys_tmp,"cmp");

  49. foreach($keys_tmp as $ key){

  50. if(is_array($keys[$key])){

  51. $url = $keys[$key][rand(0,count($keys[$key ])-1)];
  52. }else
  53. $url = $keys[$key];
  54. $this->text = $this->r_s($this- >text,$key,$url);

  55. }

  56. $this->runtime = microtime(true)-$start;
  57. return $ this->text;

  58. }
  59. /**
  60. * 取得處理時間
  61. * @access public
  62. * @return float
  63. */
  64. public function getRuntime() {
  65. return $this->runtime;

  66. }

  67. /**

  68. * 設定關鍵字
  69. * @access public
  70. * @param array $keys array(key=>url,...)
  71. */
  72. public function setKeys($keys) {
  73. $this-> keys = $keys;

  74. }

  75. /**
  76. * 設定停止字
  77. * @access public
  78. * @param array $keys array(key,...)
  79. */
  80. public function setStopKeys($keys) {
  81. $this ->stopkeys = $keys;

  82. }

  83. /**
  84. * 設定文章
  85. * @access public
  86. * @param string $text
  87. */
  88. public function setText($text) {
  89. $this->text = $text;

  90. }

  91. /**

  92. * 用來找出字串裡面命中的關鍵字
  93. * @access public
  94. * @return array $keys 回傳符合的字array(key=>url,...)
  95. */
  96. public function hits_keys(){
  97. $ar = $this->keys;
  98. $ar = $ar?$ar:array();
  99. $result=array();
  100. $str = $this->text;
  101. foreach($ar as $k=>$url){
  102. $k = trim($k);
  103. if(!$k)
  104. continue;
  105. if(strpos($str,$ k)!==false && !in_array($k,$this->stopkeys)){
  106. $result[$k] = $url;
  107. }
  108. }
  109. return $result?$ result:array(); }
  110. /**

  111. * 用來找出字串裡面命中的停止詞
  112. * @access public
  113. * @return array $keys 回傳符合的字array(key,...)
  114. */
  115. public function hit_stop_keys(){
  116. $ar = $this->stopkeys;
  117. $ar = $ar?$ar :array();
  118. $ result=array();
  119. $str = $this->text;
  120. foreach($ar as $k){
  121. $k = trim($k) ;
  122. if(!$ k)
  123. 繼續;
  124. if(strpos($str,$k)!==false && in_array($k,$this->stopkeys)){
  125. $結果[] = $k;
  126. }
  127. }
  128. 回傳 $result?$result:array();
  129. }
  130. /**

  131. * 處理替換過程
  132. * @access private
  133. * @param string $text 被替換者
  134. * @param string $key 關鍵字
  135. * @param string $url 連結
  136. * @return string $text 處理好的文章
  137. */
  138. 蕨函數 r_s ($text,$key,$url){
  139. $tmp = $text;

  140. $stop_keys = $this->hits_stop_keys(); p>

  141. $stopkeys = $tags = $a = array();

  142. if(preg_match_all("#]+>[^] *> ;#su",$tmp,$m)){
  143. $a=$m[0];
  144. foreach($m[0] as $k=>$ z){

  145. $z = preg_replace("###s","#",$z);
  146. $tmp = preg_replace('#'.$z.'#s',"[_a".$k."_]",$tmp,1);
  147. }
  148. };
  149. if(preg_match_all("#]+>#s",$tmp,$m)){

  150. $tags = $m[0] ;
  151. foreach($m[0] as $k=>$z){
  152. $z = preg_replace("###s","#",$z);
  153. $tmp = preg_replace ('#'.$z.'# s',"[_tag".$k."_]",$tmp,1);
  154. }
  155. }
  156. if(!empty($stop_keys ) )){
  157. if(preg_match_all( "#".implode("|",$stop_keys)."#s",$tmp,$m)){
  158. $stopkeys = $m[0];
  159. foreach($m[0] as $k=>$z){
  160. $z = preg_replace("###s","#",$z);
  161. $tmp = preg_replace( ' #'.$z.'#s ',"[_s".$k."_]",$tmp,1);
  162. }
  163. }
  164. }
  165. $key1 = preg_replace ( "#([#()[] *])#s","\\$1",$key);
  166. if($this->url)

  167. $tmp = preg_replace("#(?![_s|[_a|[_|[_t|[_ta|[_tag)]".$key1."(?!agd +_]|gd+_]|d+_] | sd+_]|_])#us",''.$key.'',$tmp,$this->all?-1 : 1);
  168. else
  169. $tmp = preg_replace("#(?![_s|[_a|[_|[_t|] [_ta|[_tag)]".$key1."(?! agd+ _]|gd+_]|d+_]|sd+_]|_])#us",$url,$tmp,$this ->全部?-1:1);
  170. if(!empty($a)){

  171. foreach($a as $n=>$at){

  172. $tmp = str_replace ("[_a".$n."_]",$at,$tmp);

  173. }

  174. }

  175. if(! empty ($tags)){
  176. foreach($tags as $n=>$at){

  177. $tmp = str_replace("[_tag". $ n."_]",$at,$tmp);

  178. }

  179. }

  180. if(!empty($stopkeys)){
  181. foreach($stopkeys as $n=>$at){

  182. $tmp = str_replace("[_s".$n."_]" , $at,$tmp);

  183. }

  184. }

  185. 回傳$tmp;
  186. }
  187. }
複製程式碼


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板