|
|
|
Warning: scandir(a) [function.scandir]: failed to open dir: No erro แก้ยังไงครับผม T^T |
|
|
|
|
|
|
|
ลองดูน่ะครับ ผมเองก็มึนๆอยู่..อิอิ
Code (PHP)
$objOpen = @opendir("nso");
while (($file = @readdir($objOpen)) !== false)
{
$allowed_types=array('jpg','jpeg','gif','png');
$dir=$file;
if ($dir != "." && $file != "..") //เงื่อนไข
{
if($dir=="index.php")
{
'';
} //ถ้าเจอชื่อไฟล์นี้ให้แสดง
else
{
echo "$dir<br>";
$files1 = @scandir($dir);
for($i=0;$i<count($files1);$i++)
{
$file_parts = explode('.',$files1[$i]);
$ext = strtolower($file_parts[1]);
if(in_array($ext,$allowed_types))
{
echo "$file_parts";
echo "<a href='".$dir.$files1[$i]."' rel='lightbox[roadtrip]' ><img src='".$dir.$files1[$i]."' style='width:150px;' /></a> ";
}
}
}
}
}
|
|
|
|
|
Date :
2012-03-15 10:24:27 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับๆ ขอบคุณมากๆนะครับ
|
|
|
|
|
Date :
2012-03-15 10:45:23 |
By :
dragoonmon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|