gpt4 book ai didi

php - 检查字符串是否包含数组中的值

转载 作者:IT老高 更新时间:2023-10-28 12:02:33 24 4
gpt4 key购买 nike

我正在尝试检测一个字符串是否包含至少一个存储在数组中的 URL。

这是我的数组:

$owned_urls = array('website1.com', 'website2.com', 'website3.com');

字符串由用户输入并通过 PHP 提交。在确认页面上,我想检查输入的 URL 是否在数组中。

我尝试了以下方法:

$string = 'my domain name is website3.com';
if (in_array($string, $owned_urls))
{
echo "Match found";
return true;
}
else
{
echo "Match not found";
return false;
}

无论输入什么,返回总是“未找到匹配”。

这是正确的做事方式吗?

最佳答案

试试这个。

$string = 'my domain name is website3.com';
foreach ($owned_urls as $url) {
//if (strstr($string, $url)) { // mine version
if (strpos($string, $url) !== FALSE) { // Yoshi version
echo "Match found";
return true;
}
}
echo "Not found!";
return false;

使用 stristr()stripos()如果你想检查不区分大小写。

关于php - 检查字符串是否包含数组中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19445798/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com