此代码输出:1 1 1 1
我期望0 0 0 0或0 1 2 3
<?php $arr = array(0,1,2,3); foreach($arr as $i) { echo current($arr), ' '; } ?>
php foreach
foreach ×1
php ×1