<?php
function test($a="all"){
var_dump(in_array($a,array(0,1)));
}
test("all");
test(1);
回傳兩個true
高洛峰2017-06-06 09:55:41
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )
- 如果第三个参数 strict 的值为 TRUE 则 in_array() 函数还会检查 needle 的类型是否和 haystack 中的相同。
你需要使用第三個參數。