最新回答 / weibo_萬層餅干_0
PATH_SEPARATOR:include多個路徑使用,在windows下,當你要include多個路徑的話,你要用”;”隔開,但在linux下就使用”:”隔開的
2016-02-04
$a = new ArrayIterator(array('a','b','c'));
$b = new ArrayIterator(array('d','e','f'));
$it = new AppendIterator()->append($a)->append($b);
$b = new ArrayIterator(array('d','e','f'));
$it = new AppendIterator()->append($a)->append($b);
2015-12-26
$it = new ArrayObject()->getIterator();
foreach($it as $key=>$value)
foreach($it as $key=>$value)
2015-12-26