这是$ feed_content数组
Array
(
[0] => Array
(
[id] => 1
[link] => http://www.dust-off.com/10-tips-on-how-to-love-your-portable-screens-keeping-them-healthy
)
[1] => Array
(
[id] => 2
[link] => http://www.dust-off.com/are-you-the-resident-germaphobe-in-your-office
)
)
----另一个阵列----------
这是$ arrFeeds数组
Array
(
[0] => Array
(
[title] => 10 Tips on How to Love Your Portable Screens (Keeping them Healthy)
[link] => http://www.dust-off.com/10-tips-on-how-to-love-your-portable-screens-keeping-them-healthy
)
[1] => Array
(
[title] => Are You the Resident Germaphobe in Your Office?
[link] => http://www.dust-off.com/are-you-the-resident-germaphobe-in-your-office
)
)
这是我的代码:
foreach( $arrFeeds as $key2 => $value2 )
{
$feed_content = $feed->get_feed_content( $value['id'] );
if( !in_array( $value2['link'], $feed_content ) )
{
echo "not match!";
}
}
问题:
即使$ feed_content链接值具有$ arrFeeds链接的值,为什么代码总是进入if语句?
我的预期结果应该是我的代码会告诉我$ feed_content链接值是否不在$ arrFeeds中。
顺便说一下,$feed_content
代码返回我在上面指定的数组。
这个应该是什么问题。提前致谢! :)
答案 0 :(得分:2)
这是因为你的数组元素$ feed_content也是关联数组(带有id和link键)
您正在检查链接(字符串)是否等于数组中的任何元素(所有数组)
编辑:
要实现您想要的效果,您可以使用“黑客”。您可以使用以下内容代替in_array:
$search_key = array_search(array('id'=>true,'link'=>$value2['link']), $feed_content);//use true for the id, as the comparison won't be strict
if (false !== $search_key)//stict comparison to be sure that key 0 is taken into account
{
echo 'match here';
}
这个东西依赖于这样一个事实:你可以使用数组作为array_search函数的搜索针,并且比较不会很严格,所以true将匹配任何数字(除了0,但我想你不要' t使用0作为id)
这种方式唯一真正重要的领域是链接
之后你需要在这次使用严格的比较,以确保如果找到的键为0,你将使用它
答案 1 :(得分:0)
in_array
不会递归搜索。它将$feed_content
视为
Array
(
[0] => Array
[1] => Array
)
现在,您可以通过$feed_content
$found = false;
foreach($feed_content as $feedArr)
{
if(in_array($value2['link'], $feedArr))
{
$found = true;
}
}
if(!$found) echo "not match!";
答案 2 :(得分:0)
if( !in_array( $value2['link'], $feed_content ) )
if( !in_array( $value2['link'], array_values($feed_content)) )