הוסטס - פורום אחסון האתרים הגדול בישראל

הוסטס - פורום אחסון האתרים הגדול בישראל (https://hosts.co.il/forums/index.php)
-   פורום תיכנות (https://hosts.co.il/forums/forumdisplay.php?f=14)
-   -   כיצד אני מציג רק קבצים מפורמט מסויים מתוך תיקייה ? (https://hosts.co.il/forums/showthread.php?t=18029)

bestdesign 18-03-06 22:37

כיצד אני מציג רק קבצים מפורמט מסויים מתוך תיקייה ?
 
במקרה שלי זה רק מפורמט Gif.
יש לי הקוד הבא :

PHP קוד:

<?php
$dir 
"styles/red/images/";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
   if (
$dh opendir($dir)) {
       while ((
$file readdir($dh)) !== false) {
           echo 
"<img src=styles/red/images/$file>";
       }
       
closedir($dh);
   }
}
?>

שכאמור שולף את הקבצים ומציגם כתמונה, עובד מצוין, רק שישנם עוד 3 קבצים שהם

1.לא ידוע
2.לא ידוע
3.thumbs.db

שאני לא רוצה להציגם, כיוון שגם אי אפשר.
אז כיצד אני מגביל את ההצגה לפורמט Gif בלבד ?

תודה.

בניה 18-03-06 23:12

לש"ש


תנסה:
PHP קוד:

<?php
$dir 
"styles/red/images/";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
   if (
$dh opendir($dir)) {
       while ((
$file readdir($dh)) !== false) {
       if(
substr($file,strrpos($file'.')+1)=='gif'||substr($file,strrpos($file'.')+1)=='GIF')
           echo 
"<img src=styles/red/images/$file>";
       }
       
closedir($dh);
   }
}
?>


bestdesign 18-03-06 23:17

parse error...=[

בניה 18-03-06 23:23

לש"ש

לא הרצתי את הקוד.
מצאתי 2 שגיאות אבל אם יהיו עוד תכתוב את המיקום.

PHP קוד:

<?php
$dir 
"styles/red/images/";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
   if (
$dh opendir($dir)) {
       while ((
$file readdir($dh)) !== false) {
       if(
substr($file,strrpos($file,'.')+1)=='gif'||substr($file,strrpos($file,'.')+1)=='GIF')
           echo 
"<img src=styles/red/images/$file>";
       }
       
closedir($dh);
   }
}
?>


bestdesign 19-03-06 13:13

תודה רבה לך בניה! עזרת לי מאוד! אין לי מילים.

שקד 20-03-06 07:40

המטרה הושגה, האשכול ננעל.


כל הזמנים הם GMT +2. הזמן כעת הוא 17:11.

מופעל באמצעות VBulletin גרסה 3.8.6
כל הזכויות שמורות ©
כל הזכויות שמורות לסולל יבוא ורשתות (1997) בע"מ