1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. PHP屏蔽關鍵字的方法

        時間:2024-10-09 09:32:16 PHP 我要投稿
        • 相關推薦

        PHP屏蔽關鍵字的方法

          如何在簡單的站內搜索中,設置關鍵字過濾?以下就是小編精心推薦PHP屏蔽關鍵字實現方法,希望對大家有幫助!

          第一種方法

          思路 用正則去匹配關鍵字,把關鍵字用別的字符替換

          $str = "/你xxx|你xxx|什么xxx|Sx|xxx/"; // 關鍵字正則字符串

          $string = "xxx"; // 文本字符串

          echo preg_replace($str, "*", $string); //preg_replace() 執行一個正則表達式的匹配和替換

          OK 方法一結束 挺簡單把 大家在看的時候可以根據思路自己先去想

          方法二

          思路

          1.把關鍵字放到一個txt文檔中 要用一定的符合分隔開 ,用file_get_contents() 函數將關鍵字文檔讀入

          2.用函數explode() 把字符串分割成數組 循環數組 strpos() 查找匹配關鍵字

          代碼

          header('content-type:textml; charset=utf-8;');

          function strPosf u c k($content)

          {

          $f u c k = file_get_contents('keyWords.txt'); // 讀取關鍵字文本信息

          $content = trim($content); $f u c kArr = explode(" ",$f u c k); // 把關鍵字轉換為數組

          for ($i=0; $i < count($f u c kArr) ; $i++)

          {

          // $f u c kArr[$i] = trim($f u c kArr[$i]);

          if ($f u c kArr[$i] == "") {

          continue; //如果關鍵字為空就跳過本次循環

          # code...

          }

          if (strpos($content,trim($f u c kArr[$i])) != false)

          {

          return $f u c kArr[$i]; //如果匹配到關鍵字就返回關鍵字

          # code...

          }

          } return false; // 如果沒有匹配到關鍵字就返回 false

          }

          $content = "我今天你大爺碰到一個SB";

          $key = strPosf u c k($content);

          if ($key)

          {

          echo "存在關鍵字".$key;

          # code...

          }

          else

          {

          echo "OK";

          }

          注意點 一定要去空 一定要去空 ,

          strops() 函數返回值 要么是false 要么就是關鍵字的位置 判斷的時候注意

          成功后大家可以想想怎么把匹配到的關鍵字全部返回組成一個字符串或者數組

        【PHP屏蔽關鍵字的方法】相關文章:

        PHP錯誤類型及屏蔽方法08-22

        PHP常用的關鍵字08-18

        PHP處理密碼的幾種方法10-17

        十天學會php的方法09-23

        MongoDB的PHP驅動方法與技巧大全09-08

        了解PHP環境搭建與配置的方法08-03

        PHP開發環境安裝的方法有哪些10-27

        php在新浪云中使用imagick的方法07-14

        PHP url 加密解密函數代碼方法10-25

        關于php堆排序實現原理與應用方法10-09

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>