欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php如何判断字符串是否存在

程序员文章站 2022-04-28 13:31:38
...

例子,使用 === or !== 判断字符串存在与否。

代码:

  1. if(stripos($sql, "insert") === 0){
  2. $excuteResult = mysql_query($sql);
  3. if($excuteResult){
  4. $sql = $sql2."where id = (select max(id) from subway2)";
  5. }
  6. } else if(stripos($sql, "delete") === 0 || stripos($sql, "update") === 0){
  7. if (strpos($foo, “my”)===0) { echo(‘I find!’);}
复制代码