は、ここに私のPHPコードです:file_exists()が動作しないのはなぜですか?
<?php
var_dump(file_exists('/usr/local/apache2/resumes/28/Chapel Hill/franky_li/CV.doc'));
?>
~
~
"test.php" 5L, 96C written
[[email protected] htdocs]# php test.php
bool(true)
[[email protected] htdocs]#
:
[[email protected] 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
[[email protected] htdocs]#
が、それは確かに引用の問題だと思われる:ファイルが存在しませんが、実際にはそれがないと言う
[[email protected] 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
[[email protected] htdocs]# php test.php
bool(false)
以下のコンバータを使用して修正しました:
preg_replace('/\/([^\/\s]+\s+[^\/]+)(?:\/|$)/','/"${1}"/',$file);
bashで動作させるには!
[PHPのfile_exists()は私のためには機能しませんか?](http://stackoverflow.com/questions/1287837/phps-file-exists-will-not-work-for-me) – razlebe