-4

我正在使用类似于 http://tympanus.net/codrops/2010/05/23/fresh-sliding-thumbnails-gallery-with-jquery-php的幻灯片,我希望显示文件夹的每个图像而不是下拉正如我试图学习 PHP .....请帮助

4

1 回答 1

1

首先:这是一个非常具体的问题。贴出你的代码?你尝试了什么?

但是:关于您的标题"How to select images from a folder?",请从这里开始:

<?php

$directory = '.'; // your directory

$files  = scandir( $directory );
$images = array();

foreach( $files as $file )
{
    $attributes = getimagesize( $file );
    if( $attributes )
    {
        array_push( $images, $file );
    }
}

// An array with your images
print_r( $images );
于 2012-08-09T08:08:48.907 回答