|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-10-03 14:48 UTC] scott at meikohou dot com
In old apache
1.3.26/php.4.0.6
if (file_exists("somefile.pdf")) unlink("somefile.pdf");
pdf_open_file($pdf, "somefile.pdf");
would check the current directory.
ie .. it will do these actions whereever documentroot happens to be.
now it does not do this anymore in Apache/2.0.42 (Unix) mod_ssl/2.0.42 OpenSSL/0.9.6b PHP/4.2.3
in apache 2.0.42
getcwd() returns the current working directory <documentroot>
however if i do chdir (documentroot)
the first command
if (file_exists("somefile.pdf")) unlink("somefile.pdf");
will work
but the 2nd
pdf_open_file($pdf, "somefile.pdf");
will not.
the workaround seems to be to work is to include the whole path
pdf_open_file($pdf, "$documentroot/somefile.pdf");
which appears to work .. is this a bug or a feature?
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 09:00:01 2025 UTC |
A smarter variant of the workaround is to use file_exists(realpath('somefile.pdf')); which works quite fine on Apache 2.0.40 Philipp