此脚本从名为Random的文件夹中选取3个随机图像并显示它们,但它不能脱机工作。
xampp在将图像显示为断开的链接时出现此错误注意:未定义的变量:第69行的C:\ xampp \ htdocs \ sito \ finaleasd2.php中的random2
这里的第69行是while (!$random2 || $random2 == $random1) {
发生了什么事?
<?php function RandomFile($folder='', $extensions='.*'){
// fix path:
$folder = trim($folder);
$folder = ($folder == '') ? './' : $folder;
// check folder:
if (!is_dir($folder)){ die('invalid folder given!'); }
// create files array
$files = array();
// open directory
if ($dir = @opendir($folder)){
// go trough all files:
while($file = readdir($dir)){
if (!preg_match('/^\.+$/', $file) and
preg_match('/\.('.$extensions.')$/', $file)){
// feed the array:
$files[] = $file;
}
}
// close directory
closedir($dir);
}
else {
die('Could not open the folder "'.$folder.'"');
}
if (count($files) == 0){
die('No files where found :-(');
}
// seed random function:
mt_srand((double)microtime()*1000000);
// get an random index:
$rand = mt_rand(0, count($files)-1);
// check again:
if (!isset($files[$rand])){
die('Array index was not found! very strange!');
}
// return the random file:
return $folder . "/" . $files[$rand];
}
//assegna i nomi delle variabili ai file
$random1 = RandomFile("random");
while (!$random2 || $random2 == $random1) {
$random2 = RandomFile("random");
}
while (!$random3 || $random3 == $random1 || $random3 == $random2) {
$random3 = RandomFile("random");
}
//la parte dedicata alla creazione dei testi alternativi partendo da un file di testo
$quotesfile = "quotes.txt"; //Relative path to and the filename of the file that contains your quotes.
$array = @file("$quotesfile");
// Crea un array con le citazioni
$quote = rand(0, count($array)-1);
$titolo = array_rand($array, 3);
// la parte sotto crea un div con dentro due immagini statiche, i lati della panchina, e quattro caricate a caso. le immagini hanno
// come titoli le variabili estratte casualmente dall' array di nome array preso dal file di testo di prima
?>
答案 0 :(得分:0)
我不知道“离线”是什么意思,但是你会收到通知。这意味着您正在读取一个从未设置过的变量。在我猜的早期版本中,这并没有产生通知(请注意,这不是错误,这是一个通知),并不意味着您的代码不起作用。
您可以通过对所有变量进行贴图来修复它(可能是$random2
,因此请使用$random2 = false;
或$random2 = array();
您也可以,但这不太好,请将错误报告设置为不包括通知。
答案 1 :(得分:0)
作为一般提示,可以选择三个随机条目,很多更简单:
// build array of files once
// assume here $files is something like array('foo.jpeg', 'bar.jpeg', …)
shuffle($files);
$threeRandomImages = array_slice($files, 0, 3);
完成。