中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP 替換文章關鍵字,鏈接 只替換一次2

發布時間:2020-08-04 00:20:19 來源:網絡 閱讀:533 作者:bx123 欄目:開發技術
<?php



/*

* 關鍵詞匹配類

* @author ylx <ylx@gmail.com>

* @packet mipang

* 使用實例

* $str = "綠殼蛋雞撒范德薩下一年adasa,下一年的灑落開房間盧卡斯地方軍";

* $key = new KeyReplace($str,array("xxxx"=>"<a ss>sadf</a ss>","下一年"=>'<a ss>http://baidu.com</a>',"下一年"=>'<a ss>google.com<a ss>'));

* echo $key->getResultText();

* echo $key->getRuntime();

*/

$str = "綠殼蛋雞撒范德薩下一年adasa,下一年的灑<a href>下一年</a>落開房間盧卡斯地方軍";

$k=new KeyWordReplace($str,array("薩下一年adasa"=>'<a href="google.com">下一年3<a ss>',"下一年"=>'<a href="google.com">下一年2</a>'));


echo $k->getResultText();





/*
 * 關鍵詞匹配類
 * $str = "是是是是是范德薩下一年,下一年誰誰誰水水水水的灑落開是是是是軍";
 * $key = new KeyReplace($str,array("下一年1"=>'http://baidu.com',"下一年"=>'baidu.com'));
 * echo $key->getResultText();
 * echo $key->getRuntime();
 */
class KeyWordReplace
{
    private $keys = array();
    private $text = "";
    private $runtime = 0;
    private $url = true;
    private $stopkeys = array();
    private $all = false;
    /**
     * @access public
     * @param string $text 指定被處理的文章
     * @param array $keys 指定字典詞組array(key=>url,...) url可以是數組,如果是數組將隨機替換其中的一個
     * @param array $stopkeys 指定停止詞array(key,...) 這里面的詞將不會被處理
     * @param boolean $url true 表示替換成鏈接否則只替換
     * @param boolean $all true 表示替換所有找到的詞,否則只替換第一次
     */
    public function __construct($text='',$keys=array(),$url=true,$stopkeys=array(),$all=false) {
        $this->keys = $keys;
        $this->text = $text;
        $this->url = $url;
        $this->stopkeys = $stopkeys;
        $this->all = $all;
    }
    
    /**
     * 獲取處理好的文章
     * @access public
     * @return string text
     */
    public function getResultText() {
        $start = microtime(true);
        $keys = $this->hits_keys();
        
        $keys_tmp = array_keys($keys);
        
        function cmp($a, $b){
            if (mb_strlen($a) == mb_strlen($b)) {
                return 0;
            }
            return (mb_strlen($a) < mb_strlen($b)) ? 1 : -1;
        }
        
        usort($keys_tmp,"cmp");
        
        foreach($keys_tmp as $key){
            
            if(is_array($keys[$key])){
                $url = $keys[$key][rand(0,count($keys[$key])-1)];
            }else
                $url = $keys[$key];
                
                $this->text = $this->r_s($this->text,$key,$url);
                
        }
        $this->runtime = microtime(true)-$start;
        
        return $this->text;
    }
    /**
     * 獲取處理時間
     * @access public
     * @return float
     */
    public function getRuntime() {
        
        return $this->runtime;
        
    }
    
    /**
     * 設置關鍵詞
     * @access public
     * @param array $keys array(key=>url,...)
     */
    public function setKeys($keys) {
        
        $this->keys = $keys;
        
    }
    /**
     * 設置停止詞
     * @access public
     * @param array $keys array(key,...)
     */
    public function setStopKeys($keys) {
        
        $this->stopkeys = $keys;
        
    }
    /**
     * 設置文章
     * @access public
     * @param string $text
     */
    public function setText($text) {
        
        $this->text = $text;
        
    }
    
    /**
     * 用來找到字符串里面命中的關鍵詞
     * @access public
     * @return array $keys 返回匹配到的詞array(key=>url,...)
     */
    public function hits_keys(){
        $ar = $this->keys;
        $ar = $ar?$ar:array();
        $result=array();
        $str = $this->text;
        foreach($ar as $k=>$url){
            $k = trim($k);
            if(!$k)
                continue;
                if(strpos($str,$k)!==false && !in_array($k,$this->stopkeys)){
                    $result[$k] = $url;
                }
        }
        return $result?$result:array();
    }
    
    /**
     * 用來找到字符串里面命中的停止詞
     * @access public
     * @return array $keys 返回匹配到的詞array(key,...)
     */
    public function hits_stop_keys(){
        $ar = $this->stopkeys;
        $ar = $ar?$ar:array();
        $result=array();
        $str = $this->text;
        foreach($ar as $k){
            $k = trim($k);
            if(!$k)
                continue;
                if(strpos($str,$k)!==false && in_array($k,$this->stopkeys)){
                    $result[] = $k;
                }
        }
        return $result?$result:array();
    }
    
    /**
     * 處理替換過程
     * @access private
     * @param string $text 被替換者
     * @param string $key 關鍵詞
     * @param string $url 鏈接
     * @return string $text 處理好的文章
     */
    private function r_s($text,$key,$url){
        
        $tmp = $text;
        
        $stop_keys = $this->hits_stop_keys();
        
        $stopkeys = $tags = $a = array();
        if(preg_match_all("#<a[^>]+>[^<]*</a[^>]*>#su",$tmp,$m)){
            $a=$m[0];
            
            foreach($m[0] as $k=>$z){
                $z = preg_replace("#\##s","\#",$z);
                
                $tmp = preg_replace('#'.$z.'#s',"[_a".$k."_]",$tmp,1);
            }
            
        };
        
        if(preg_match_all("#<[^>]+>#s",$tmp,$m)){
            $tags = $m[0];
            foreach($m[0] as $k=>$z){
                $z = preg_replace("#\##s","\#",$z);
                $tmp = preg_replace('#'.$z.'#s',"[_tag".$k."_]",$tmp,1);
            }
        }
        if(!empty($stop_keys)){
            if(preg_match_all("#".implode("|",$stop_keys)."#s",$tmp,$m)){
                $stopkeys = $m[0];
                foreach($m[0] as $k=>$z){
                    $z = preg_replace("#\##s","\#",$z);
                    $tmp = preg_replace('#'.$z.'#s',"[_s".$k."_]",$tmp,1);
                }
            }
        }
        $key1 = preg_replace("#([\#\(\)\[\]\*])#s","\\\\$1",$key);
        
        if($this->url)
            $tmp = preg_replace("#(?!\[_s|\[_a|\[_|\[_t|\[_ta|\[_tag)".$key1."(?!ag\d+_\]|g\d+_\]|\d+_\]|s\d+_\]|_\])#us",$url,$tmp,$this->all?-1:1);
            else
                $tmp = preg_replace("#(?!\[_s|\[_a|\[_|\[_t|\[_ta|\[_tag)".$key1."(?!ag\d+_\]|g\d+_\]|\d+_\]|s\d+_\]|_\])#us",$url,$tmp,$this->all?-1:1);
                
                if(!empty($a)){
                    
                    foreach($a as $n=>$at){
                        
                        $tmp = str_replace("[_a".$n."_]",$at,$tmp);
                        
                    }
                    
                }
                if(!empty($tags)){
                    
                    foreach($tags as $n=>$at){
                        
                        $tmp = str_replace("[_tag".$n."_]",$at,$tmp);
                        
                    }
                    
                }
                if(!empty($stopkeys)){
                    
                    foreach($stopkeys as $n=>$at){
                        
                        $tmp = str_replace("[_s".$n."_]",$at,$tmp);
                        
                    }
                    
                }
                return $tmp;
    }
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普兰县| 巴楚县| 焦作市| 诸城市| 岑巩县| 清河县| 开阳县| 弥勒县| 通山县| 辽中县| 六安市| 建宁县| 嘉峪关市| 宝兴县| 元氏县| 武山县| 兴化市| 溧阳市| 民县| 宽城| 松阳县| 昌江| 宁陕县| 芒康县| 崇仁县| 赫章县| 乐山市| 和龙市| 哈巴河县| 富顺县| 新乡县| 闵行区| 屏边| 正阳县| 宁蒗| 上蔡县| 屏东县| 鄢陵县| 同心县| 鹤岗市| 阿鲁科尔沁旗|