PHP 显示随机图像,文件和/或HTML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 显示随机图像,文件和/或HTML相关的知识,希望对你有一定的参考价值。

/*
Inspired by
Simple randomizer.
Roger Johansson, http://www.456bereastreet.com/
*/
echo '<div class="name">' . "\n";
$items = array(
	1 => array(
		'href' => 'link.html',
		'title' => 'text',
		'src' => 'image-1.jpg',
		'alt' => 'text'
	),
	2 => array(
		'href' => 'link.html',
		'title' => 'text',
		'src' => 'image-2.jpg',
		'alt' => 'text'
	),
	3 => array(
		'href' => 'link.html',
		'title' => 'text',
		'src' => 'image-3.jpg',
		'alt' => 'text'
	),
	4 => array(
		'href' => 'link.html',
		'title' => 'text',
		'src' => 'image-4.jpg',
		'alt' => 'text'
	),
	5 => array(
		'href' => 'link.html',
		'title' => 'text',
		'src' => 'image-5.jpg',
		'alt' => 'text'
	)
);

$item = $items[rand(1,5)];
echo "\t" . '<a href="' . $item['href'] . '" title="' . $item['title'] . '"><img src="' . $item['src'] . '" alt="' . $item['alt'] . '"></a>' . "\n";
echo '</div>' . "\n";

以上是关于PHP 显示随机图像,文件和/或HTML的主要内容,如果未能解决你的问题,请参考以下文章

Web,SQL:尽管文件名显示随机图像,从文件夹加载图像

PHP 在PHP中显示随机图像

使用 PHP 保存随机图像

PHP 使用php显示标准img src中目录的随机图像

用PHP显示随机图像

我无法在 Laravel PHP 和 HTML 中显示视频、音频和图像