6

我想知道是否有任何函数可以在字符串中搜索字符串并在 PHP 中返回布尔值,告诉字符串是否包含,就像 Java 中包含的方法一样?

4

1 回答 1

9

你可以试试strpos()http ://php.net/strpos

$str = "This is a sample string.";
$findMe = "sample";

if (strpos($str, $findMe) !== false) {
    // you found me!
}
于 2012-07-13T19:37:07.040 回答