>백엔드 개발 >PHP 튜토리얼 >in_array()函数第三个参数的问题

in_array()函数第三个参数的问题

WBOY
WBOY원래의
2016-06-23 13:28:061156검색

class Included{}class test{    public $arr = array();    function a(Included $include){        if (in_array($include, $this->arr, true)){        	  return;        }        $this->arr[] = $include;    }}$test = new test();$test->a(new Included());$test->a(new Included());$test->a(new Included());print_r($test->arr);   //   输出Array ( [0] => Included Object ( ) [1] => Included Object ( ) [2] => Included Object ( ) )

bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )
如果第三个参数 strict 的值为 TRUE 则 in_array() 函数还会检查 needle 的类型是否和 haystack 中的相同。
这个类型是否可以理解为对象实例。  因为上面的例子中的in_array()第三个参数默认的时候,只有输出
Array ( [0] => Included Object ( ) )



回复讨论(解决方案)

是的,这个类型同样包括对象实例

恩,谢谢您了。

第三???是?查是否相同?型的。
例如:

<?php$a = 123;$arr = array('123','456');var_dump(in_array($a, $arr)); // truevar_dump(in_array($a, $arr, true)); // false?>
 

谢谢楼上,但是这个类型相同是否是包含对象实例,这个php手册里没有这方面的描述。

手册中是这样描述的
如果第三个参数 strict 的值为 TRUE 则 in_array() 函数还会检查 needle 的 类型是否和 haystack 中的相同。

那个类型是个链接,点开后是

这就不需要再细说了吧?
而况你实测的结果也是包括对象的

好的,谢谢了。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.