查看文件: index_street.php
大小: 954 字节
类型: application/octet-stream
<style> .img_container{ //padding: 0; //margin: 0; overflow: scroll; white-space:nowrap; } .img_container img{ margin-left:-5px; } </style> <?php $street_id='830';// 忠孝東路5段 2- 1000 $order=0; // 圖編號排列 -1 = 1000 ~ 1 1= 忠孝東路5段 1 ~ 1000 $dir = '/www2/skybni/street_image/'; $files1=array(); $files2=array(); if($order==1){ $files1 = scandir($dir); } else { $files1 = scandir($dir, SCANDIR_SORT_DESCENDING); } $newid=0; for($i=0;$i<count($files1);$i++){ // if(substr($files1[$i],0,strlen($street_id)-1)==$street_id){ $str1=substr($files1[$i],0,strlen($street_id)) ; // echo $files1[$i].'('.$str1.')'.(strlen($street_id)-1).'<br>'; if($str1==$street_id){ $files2[$newid]=$files1[$i]; $newid++; } } ?> <div class="img_container"> <? for($i=0;$i<count($files2);$i++){ ?> <img src="/street_simage/s<?=$files2[$i]; ?>" > <? } ?> </div>
保存
取消
返回文件列表