我怎样才能使用preg_match

时间:2016-09-09 16:49:40

标签: php string function

我只想问一下如何在字符串中找到一些文本。我知道我将在PHP中使用userId函数,但我不知道如何使用它。让我们说我想做一个网络托管。我应该这样做:

preg_match

如果没有,我需要做什么

1 个答案:

答案 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';
}