PHP中的字符串比较运算符

时间:2013-09-12 10:10:06

标签: php function operators

我在PHP中有一个变量,其值取决于用户发布的输入表单。

$nhname=$_POST["host"];

如果变量'nhname'中包含www,则需要采取某种行动,否则需要做其他事情。

我可以将它放在if语句中并完成上述说法,但我不知道PHP运算符或函数可以检查字符串是否包含某个子字符串?

2 个答案:

答案 0 :(得分:3)

if (strpos($nhname,'www') !== false) {
    //if it contains www
}else{
    //if it doesnot contains www
}

答案 1 :(得分:1)

查看strpos()功能。

if(strpos($nhname, "www.") === FALSE){
    $nhname = "www." . $nhname;
}