1

这是我的PHP代码:

[root@file htdocs]# vi test.php
<?php

var_dump(file_exists('/usr/local/apache2/resumes/28/"Chapel Hill"/franky_li/"CV.doc"'));
?>

"test.php" [New] 5L, 100C written
[root@file htdocs]# php test.php 
bool(false)

它说该文件不存在,但实际上它确实存在:

[root@file htdocs]# ls -l /usr/local/apache2/resumes/28/"Chapel Hill"/franky_li/"CV.doc"
-rw-r--r-- 1 daemon root 36864 Oct 17  2008 /usr/local/apache2/resumes/28/Chapel Hill/franky_li/CV.doc
[root@file htdocs]# 

似乎确实是报价问题:

<?php


var_dump(file_exists('/usr/local/apache2/resumes/28/Chapel Hill/franky_li/CV.doc'));
?>
~
~
"test.php" 5L, 96C written
[root@file htdocs]# php test.php 
bool(true)
[root@file htdocs]# 

现在通过使用以下转换器修复:

preg_replace('/\/([^\/\s]+\s+[^\/]+)(?:\/|$)/','/"${1}"/',$file);

让它在 bash 中工作!

4

2 回答 2

3

尝试删除双引号,因为它已经用单引号引用了。

于 2009-06-04T01:03:27.517 回答
0

检查file_exists的手册。

请注意本节:

“对于由于安全模式限制而无法访问的文件,此函数返回 FALSE。但是,如果这些文件位于 safe_mode_include_dir 中,它们仍然可以包含在内。”

我的猜测是您使用的是 <PHP 6.0.0,并且您启用了 safe_mode(默认情况下,它在大多数主机上)。如果是这种情况,除非它包含在 safe_mode_include_dir 中,否则您将找不到该文件。

于 2009-06-04T01:04:28.670 回答