这样的列表显示是怎么循环的呢
怎么没有上传图片功能的
这样不规则的图片循环怎么写代码?
------解决方案--------------------
- PHP code
<?php for($i=0;$i<8;++$i){ if(($i)%2==0){ $style1="pic_2"; $style2="pic_1"; }else{ $style1="pic_1"; $style2="pic_2"; } $picArr = array( "http://www.iimei.com/1/xunhuan.jpg", "http://www.iimei.com/1/xunhuan.jpg" );//把图片改为动态的,自已调整 echo ' This is a test This is a test '; } ?>