我在 PHP 中有一个变量,其值取决于用户发布的输入表单。
$nhname=$_POST["host"];
如果变量“nhname”中包含 www,则需要采取某种措施,否则需要采取其他措施。
我可以将它放在 if 语句中并完成上述操作,但我不知道可以检查字符串是否包含某个子字符串的 PHP 运算符或函数?
if (strpos($nhname,'www') !== false) {
//if it contains www
}else{
//if it doesnot contains www
}
看看strpos()函数。
if(strpos($nhname, "www.") === FALSE){
$nhname = "www." . $nhname;
}