ホームページ > バックエンド開発 > PHPチュートリアル > 画像をランダムに取得するための PHP コード_PHP チュートリアル

画像をランダムに取得するための PHP コード_PHP チュートリアル

WBOY
リリース: 2016-07-13 17:23:52
オリジナル
747 人が閲覧しました


// 用法
// include("ranimage.php");
// または
// "ranimage.php" が必要です。
$dir = ダウンロードファイルsa2001-12-13;
function Get_Image_list($dir) {
if(!$dir) {
$dir = ".";
}
$file_array = array();
$dir_handle = opendir($dir);
$a = 0;
while($file = readdir($dir_handle)) {
if((preg_match(/jpg/,$file)) ||
(preg_match(/png/,$file)) ||
(preg_match(/gif/) ,$file)) ||
(preg_match(/jpeg/,$file))) {
$file_array[$a] = $file;
$a++;
}
}
$file_array を返します。
}
$files = Get_Image_list($dir);
$max = count($files)-1;
srand((double)microtime()*1000000);
$index = rand(0,$max);
$image_name = $files[$index];
echo("画像をランダムに取得するための PHP コード_PHP チュートリアル");
?>

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/532193.html技術記事 // 用法 // include("ranimage.php"); // または // "ranimage.php" が必要です。 $dir = ダウンロードファイルsa2001-12-13; function Get_Image_list($dir) { if(!$dir) { $dir = "."; $file_array =...
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート