我正在玩这个:
$sort = array('t1','t2');
function test($e){
echo array_search($e,$sort);
}
test('t1');
并得到这个错误:
Warning: array_search(): Wrong datatype for second argument on line 4
如果我在没有这样的函数的情况下调用它,我得到的结果是 0;
echo array_search('t1',$sort);
这里出了什么问题??感谢帮助。