-2

我能用吗

$im = imagecreatefrompng('1.png');

并让它从一个文件夹中调出多个随机的PNG图像?

该网站是livlaughlov.com,现在它只是使用单个 PNG 并在其上写帖子文本,我希望它从文件夹中随机抓取一个 PNG 来写文本。

4

1 回答 1

1

您可以使用该glob()功能和rand()

$folder = './dir/to/images/';
$files  = glob($folder.'*.png');
$rand   = rand(0, count($files)-1);

// random png image: $files[$rand];
于 2013-03-17T08:05:34.110 回答