我只想问一下如何在字符串中找到一些文本。我知道我将在PHP中使用userId
函数,但我不知道如何使用它。让我们说我想做一个网络托管。我应该这样做:
preg_match
如果没有,我需要做什么
答案 0 :(得分:1)
对于简单的字符串字符串检查,请使用strstr
而不是preg_match
。它简单得多:
<?php
$web_hosting_service="hostingservice.com";
$subdomain_name = "subdomain.hostingservice.com";
if(strstr($subdomain_name, $web_hosting_service)) {
echo 'true';
}