getdate()返回的是数组,这个我知道。print_r(getdate())就可以看到结果了,现在我的疑问是foreach不是历遍数组的函数吗 那我这样子写 为什么是错的? <?php$a=getdate()foreach ($a as $b) {echo "$b";}?>