php如何从二维数组中获取元素
我想使用 for 循环将此数组中的字符串变量与 $city 变量进行比较。
$return_array[] = array (
(int) $row['tid'],
$city
);
这是该数组,正确吗?
for($i=0;$i<count($return_array);$i++){
if( $return_array[$i][$city]==$another_city ){//mycode}
}
这是正确的吗?我得到了意想不到的结果,所以我不确定这种方式是否可以访问城市变量。
I want to compare a string variable with $city variables in this array using a for loop.this is the array
$return_array[] = array (
(int) $row['tid'],
$city
);
is this correct?
for($i=0;$i<count($return_array);$i++){
if( $return_array[$i][$city]==$another_city ){//mycode}
}
is this correct?I got unexpected result so I 'm not sure whether this way can I access the city variables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是:
$return_array[$i][$city]
但是:
$return_array[$i][1]
Not:
$return_array[$i][$city]
But:
$return_array[$i][1]