遇到了这个问题。记录一下。用strpos查找字符串来进行字符串包含判断。
1 <?php 2 //$res = strpos("hello", "hx"); 3 $res = strpos("hello", "he"); 4 if ($res !== false){ 5 echo "find OK, pos:$res/n"; 6 } 7 else { 8 echo "find failed, not exist/n"; 9 } 10 ?>
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/17518.html