http://tympanus.net/codrops/2010/05/23/fresh-sliding-thumbnails-gallery-with-jquery-phpのようなスライドショーを使用して います。フォルダの各画像をドロップダウンではなく表示したいPHPを学ぼうとしています.....助けてください
質問する
2623 次
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 に答える