关于 数字 数组 in_array的问题
<br />php当中<br />$a 数组包含了1到100的数字<br /><br />if (in_array(1, $a){<br />..........<br />}<br /><br />这样会把11 、21。。等等带1的都判断进来了<br /><br />这样还是不行<br />in_array(1, $a, TRUE)<br />
求救 怎么在in array中 把1和 11 那些区分开
------解决思路----------------------有什么不对吗?
if(in_array(
1, array(
1,11,21,31))) {
echo '在';
}
1 在数组中,所以输出 在
反向要这样写
if(
! in_array(1, array(11,21,31))){
echo '不在';
}
------解决思路----------------------if (in_array(1, $a){
..........
}
这样会把11 、21。。等等带1的都判断进来了。
不会这样的。
<br /><?php<br />$a = array(11,12);<br />var_dump(in_array(1, $a)); // false<br />?><br />
boolean false
<br /><?php<br />$a = array(1,2);<br />var_dump(in_array(1, $a)); // true<br />?><br />
boolean true
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn