在字符串中查找相关字符串

这个问题在这里已经有了答案:

  • 如何检查一个字符串是否包含特定单词? 37个答案

  • 尝试使用strpos

    echo strpos($searching_string, $actual_string);
    

    但它会考虑从0开始的字符串位置。因此,您需要为位置+1来获取正确的位置。

    链接地址: http://www.djcxy.com/p/13137.html

    上一篇: Find relevant string within string

    下一篇: Searching and extracting from a String using regex in PHP