我想清理 url 地址,但首先我想检查应该替换的内容是否在字符串中。我想使用 strpos 因为它更快,但它无法检测到字符串。
$txt = 'http://www.youtube.com/watch?v=aWFmXFFjJfw';
if(strpos($txt, 'http://www.')){
echo 'true strpos'; // not shows
}
if(strstr($txt, 'http://www.')){
echo 'true strstr'; // show
}
还
$match = strpos($txt, 'http://www.');
var_dump($match); // int(0);