84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
function guolv($data){ $mgc=array("哈哈","哦"); for ($i=0; $i <count($mgc) ; $i++) { $data=str_replace($mgc[i], “*”, $data); } return $data; }
写了个过滤敏感词的函数,不起作用,求教。
学习是最好的投资!
$mgc[i] >>> $mgc[$i]
这个情况可能这么写更加简单
$mgc=array("哈哈","哦"); str_replace($mgc, '*', $mgc);
function guolv($data){ $mgc=array("哈哈","哦"); for ($i=0; $i <count($mgc) ; $i++) { $data=str_replace($mgc[$i], “*”, $data);//原为$msg[i] } return $data; }
这个情况可能这么写更加简单