$kk=array(' chen ','wei ',' kyle');
$kk=array_walk($kk, create_function('&$item','$item = trim($item);'));
print_r($kk);为什么打印结果是1呢?