php判断字符串是否存在 php字符串检测代码

发布时间:2020-04-14编辑:脚本学堂
本文介绍了php判断字符串是否存在的方法,php编程中检测字符串是否存在的小例子,有需要的朋友参考下。

php判断字符串是否存

解决方法:
使用 ===  or !== 

完整代码:
 

复制代码 代码示例:
<?php
if(stripos($sql, "insert") === 0){ 
    $excuteResult = mysql_query($sql); 
    if($excuteResult){ 
        $sql = $sql2."where id = (select max(id) from subway2)"; 
    } 
    } else if(stripos($sql, "delete") === 0 || stripos($sql, "update") === 0){ 
 
if (strpos($foo, “my”)===0) { echo(‘I find!’);}