<?php
$imgdir = 'img/';
$allowed_types = array('png','jpg','jpeg','gif'); //Allowed types of files
$dimg = opendir($imgdir);//Open directory
while($imgfile = readdir($dimg))
{
//please explain this part!!
if(in_array(strtolower(substr($imgfile,-3)),$allowed_types) OR
in_array(strtolower(substr($imgfile,-4)),$allowed_types))
{$a_img[] = $imgfile;}
}
$totimg = count($a_img);
for($x=0; $x < $totimg; $x++){echo "<li><img src='" . $imgdir . $a_img[$x] . "'/></li>"
;}?>
我明白,這就像babysteps,但我的問題是: !請幫忙!謝謝!請解釋這個PHP substr代碼總共初學者
是的!寶貝語言非常受歡迎! :) 非常感謝!我剛開始學習PHP,有時覺得很愚蠢!但我會變得更好!非常感謝你! – Kristine
事實上,substr正在接受3個參數。 (字符串,開始,長度) –
歡迎您。嘗試閱讀一本書,比如24小時自學PHP,或者其他任何基本的好書。另外琳達在PHP視頻也很好。 –