关于php:检查字符串是否包含字符

Check if string contains word (not a sentence string)

本问题已经有最佳答案,请猛点这里访问。

我正在编写一个PHP脚本,但是对于一个过滤器,我需要在一个字符串中搜索一个字符串。这是我现在的剧本:

1
2
3
4
5
6
<?php
$stringtocheck ="Schiphol-Almere C./Hilversum/Utrecht C.";
$searchfor ="Hilversum";

// do the magic stuff over here
?>

如何让脚本在"$stringtocheck"中搜索"$search for"?


1
2
3
4
5
$stringtocheck ="Schiphol-Almere C./Hilversum/Utrecht C.";
$searchfor ="Hilversum";
if (strpos($stringtocheck,$searchfor) !== false) {
    echo 'true';
}