我是一个PHP菜鸟,我刚从网上找到的其他一些脚本做了一个小脚本。它从名为“Random”的文件夹中挑选3个随机图像并显示它们。
虽然我在线运行脚本可以正常运行,但是当我尝试在xampp上离线运行时,我收到此错误:
注意:未定义的变量:第69行的C:\ xampp \ htdocs \ sito \ finaleasd2.php中的random2
这是将图像命名为变量的行。 我认为这是由于脚本在离线时没有正确获取文件夹名称,但我不确定:出了什么问题? :)
BTW这是剧本,第69行是而(!$ random2 || $ random2 == $ random1) {(我知道,这是一团糟!:D)
感谢您的帮助和时间! :)
<?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 :(得分:1)
如果您唯一的问题是undefined variable
,那就很容易了。
本地和远程服务器上的服务器设置不同,因此一个返回错误而另一个没有,但是当它在它存在之前询问!$random2
它将返回错误。
因此,只需在$random2
循环之前将false
设置为while
。
$random3
同样如此。