.ANKO. 发表于 2002-11-8 16:32:00

php4.2.3的一个bug!

php4.2.3的那个file_exists()函数有问题,对于型如“./filename”的文件名,总是返回FALSE,不信你试试:
<?php
$filename = "./test.php";
if (file_exists($filename)) {
    echo "$filename exists!"
} else {
    echo "$filename not exists!"
}
?>

把上面的内容存为test.php,放到你的Apache DocumentRoot下试试吧!

只好使用getcwd()函数倒一下了。
页: [1]
查看完整版本: php4.2.3的一个bug!