我目前有这个,但它并不完美:
$testcases = array(
array("I love mywebsite.com", true),
array("mywebsite.com/ is what I like", true),
array("www.mywebsite.com is my website", true),
array("Check out www.mywebsite.com/", true),
array("... http://mywebsite.com ...", true),
array("... http://mywebsite.com/ ...", true),
array("... http://www.mywebsite.com ...", true),
array("... http://www.mywebsite.com/ ...", true),
array("I like commas and periods. Just like www.mywebsite.com, they do it too!", true),
array("thisismywebsite.com is a lot better", false),
array("The URL fake.mywebsite.com is unknown to their server", false),
array("Check out http://redirect.mywebsite.com/www.ultraspammer.com", false)
);
function contains_link($text) {
return preg_match("/(https?:\/\/(?:www\.)?|(?:www\.))mywebsite\.com/", $text) > 0;
}
foreach ($testcases as $case) {
echo $case[0] . "=".(contains_link($case[0]) ? "true" : "false") . " and it should be " . ($case[1] ? "true" : "false") . "<br />";
}Run Code Online (Sandbox Code Playgroud)
输出:
I love mywebsite.com=false and it should be true
mywebsite.com/ is what I like=false and it should be true
www.mywebsite.com is my website=true and it should be true
Check out www.mywebsite.com/=true and it should be true
... http://mywebsite.com ...=true and it should be true
... http://mywebsite.com/ ...=true and it should be true
... http://www.mywebsite.com ...=true and it should be true
... http://www.mywebsite.com/ ...=true and it should be true
I like commas and periods. Just like www.mywebsite.com, they do it too!=true and it should be true
thisismywebsite.com is a lot better=false and it should be false
The URL fake.mywebsite.com is unknown to their server=false and it should be false
Check out http://redirect.mywebsite.com/www.ultraspammer.com=false and it should be falseRun Code Online (Sandbox Code Playgroud)
The*_*ask 11
正则表达式的替代方法:parse_url()
$url = parse_url($text);
if($url['host'] == 'www.mywebsite.com' || $url['host'] == 'mywebsite.com')
Run Code Online (Sandbox Code Playgroud)
更新:
假设$text可以有很多域,请strstr()改用.
if(strstr($text,"mywebsite.com") !== FALSE)
Run Code Online (Sandbox Code Playgroud)
更新2:
function contains_link($text) {
return preg_match("/(^(https?:\/\/(?:www\.)?|(?:www\.))?|\s(https?:\/\/(?:www\.)?|(?:www\.))?)mywebsite\.com/", $text);
}
Run Code Online (Sandbox Code Playgroud)
和:
contains_link("AAAAAAA http://mywebsite.com"); //1
contains_link("foo BAaa http://www.mywebsite.com"); //1
contains_link("abc.com www.mywebsite.com"); // 1
Run Code Online (Sandbox Code Playgroud)
我想你要找的是这个:
^(https?://)?(www\.)?mywebsite\.com/?
在此处查看:http://regexr.com?30t6m
这是PHP:
function contains_link($text) {
return preg_match("~^(https?://)?(www\.)?mywebsite\.com/?~", $text);
}
Run Code Online (Sandbox Code Playgroud)
PS如果你想确定它之后没有任何东西,你应该追加$到最后.