error_reporting(E_ALL);
ini_set('display_errors','1');
if (file_exists('/../_config.php')) {
$f = fopen('/../_config.php', 'w') or die($php_errormsg);
fwrite($f, '<?php');
fclose($f);
}
else {
echo 'file doesnt exist';
}
回报: 无
我检查了 _config.php 文件,它是空的。它应该包含<?php
.
绝对没有错误,代码根本不会死。
这是与权限相关的问题吗?我在 Windows 7 上。