0
我的問題是,當我使用名稱空間時,我無法使用標準PHP庫的RecursiveIteratorIterator類。 下面的代碼:對命名空間使用RecursiveIteratorIterator?
<?php namespace mynamespace;
$arr = Array("abc", Array("def", "ghi", Array("jkl")));
$it = new RecursiveIteratorIterator(new RecursiveArrayIterator($arr));
$result = iterator_to_array($it, false);
?>
返回:
PHP Fatal error: Uncaught Error: Class 'mynamespace\RecursiveIteratorIterator' not found in ...
'new \ RecursiveIteratorIterator(new \ RecursiveArrayIterator($ arr));' - http://php.net/manual/en/language.namespaces.basics.php – AbraCadaver
噢謝謝你寫的是回答,我會打勾它:D – Tom291