|
提交问题
提示:: |
- |
运行环境: |
虚拟主机 |
运行服务器: |
win |
PHP版本: |
- |
OurPHP版本: |
7 |
编辑器: |
专用的PHP编辑器 |
程序存放目录: |
根目录 |
上传主机安装提示不存在,,为什么呢
$check_dirs = array (
'../../config',
'../../function',
'../../function/_compile',
'../../function/_cache',
'../../function/uploadfile',
'../../function/backup'
);
$i = 0;
foreach ($check_dirs AS $dir){
$full_dir = $dir;
$check_writeable = check_writeable($full_dir);
if ($check_writeable == '1')
{
echo "<p>".$check_dirs[$i]." ................................................................... <font color='#00CC33'>可写</font></p>";
}
elseif ($check_writeable == '0')
{
echo "<p>".$check_dirs[$i]." ................................................................... <font color='#ff0000'>不可写</font></p>";
$no_write = true;
}
elseif ($check_writeable == '2')
{
echo "<p>".$check_dirs[$i]." ................................................................... <b>不存在</b></p>";
$no_write = true;
}
$i = $i + 1;
}
|
|