我正在尝试调试我编写的脚本,并且存在一个问题,即检查(多维)资产数组中是否存在标识符。我正在使用in_array函数,以递归方式搜索我从this question获得的内容。
这是功能:
function in_array_r($needle, $haystack, $strict = false) {
foreach ($haystack as $item) {
if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
return true;
}
}
return false;
}
我正在使用这些数据:
针:'B51MM36'
大海捞针:(为无法修复的数组道歉 - 找不到从var_export
美化的方法)
$sedols = array ( 0 => array ( 'ipsid' => '72', 'buyList' => '1', 'sedol' => 'B8LFDR7', 'isin' => 'LU0827876409', 'currency' => NULL, 'hedged' => '0', 'acc' => '0', 'inst' => '0', 'description' => 'BlackRock European Long Only', 'nonUKsitus' => '0', 'reportingStatus' => '0', 'matchScore' => 0, ), 1 => array ( 'ipsid' => '72', 'buyList' => '1', 'sedol' => 'LU0827876151', 'isin' => 'LU0827876151', 'currency' => 'USD', 'hedged' => '1', 'acc' => '1', 'inst' => '0', 'description' => 'Blackrock European Long Only', 'nonUKsitus' => '0', 'reportingStatus' => '0', 'matchScore' => 0, ), 2 => array ( 'ipsid' => '72', 'buyList' => '1', 'sedol' => 'LU0406496546 ', 'isin' => 'LU0406496546 ', 'currency' => 'EUR', 'hedged' => '1', 'acc' => '1', 'inst' => '0', 'description' => 'Blackrock European Long Only', 'nonUKsitus' => '0', 'reportingStatus' => '0', 'matchScore' => 0, ), 3 => array ( 'ipsid' => '72', 'buyList' => '1', 'sedol' => 'LU0827876409', 'isin' => 'LU0827876409', 'currency' => 'GBP', 'hedged' => '1', 'acc' => '0', 'inst' => '0', 'description' => 'Blackrock European Long Only', 'nonUKsitus' => '0', 'reportingStatus' => '1', 'matchScore' => 1, ), );
当我运行var_dump(in_array_r('B51MM36', $sedols));
时,它会输出bool(true)
。我很困惑,因为字符串'B51MM36'
没有出现在haystack数组中的任何地方。谁能确定这里发生了什么?
答案 0 :(得分:2)
原因是
var_dump('B51MM36' == 0);
是真的,不知道为什么(也许它将字符串转换为整数),但这项工作
var_dump(in_array_r('B51MM36', $sedols, true));
尝试删除严格选项
答案 1 :(得分:2)
正如其他人所提到的,逻辑不会产生预期结果。你也必须使类型匹配成为现实。 PHP会输入juggling:http://php.net/manual/en/language.operators.comparison.php
因此,在这种情况下,0=='B51MM36'
将返回true,因为B51MM36
的值在转换后为0。
希望这有帮助