<?
$dir=scandir('/home/crusty/www/crusty.bshellz.pl/htdocs/404/');
foreach($dir as $file){
if($file!='.' && $file!='..' && $file!='index.php'){
$choice=$dir[rand(0, count($dir) - 1)];
include($choice);
}
}
?>
我有一個小代碼的問題。當然它正在處理一些文件,但它仍然試圖包含index.php,..和。 同一個人可以幫我解決嗎?包括PHP的問題
警告:包括(/home/crusty/www/crusty.bshellz.pl/htdocs)[]:未能打開流:不適當ioctl for device in /home/crusty/www/crusty.bshellz.pl/htdocs/404/index.php on line 8 Warning:include()[function.include]:失敗打開'/ home/crusty/www/'包含在/home/crusty/www/crusty.bshellz.pl/中的'crusty.bshellz.pl/htdocs/404/ ..'(include_path ='。:/ usr/share/php5:/ usr/share/php') htdocs/404/index.php上線8 所以它仍然不工作。 – crusty