php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #34371 Incorrect working directory in some callback functions.
Submitted: 2005-09-05 06:06 UTC Modified: 2005-09-05 08:08 UTC
From: hightman2 at yahoo dot com dot cn Assigned:
Status: Not a bug Package: Apache related
PHP Version: 4.4.0 OS: Linux
Private report: No CVE-ID: None
 [2005-09-05 06:06 UTC] hightman2 at yahoo dot com dot cn
Description:
------------
When the callback functions was called by register_shutdown_function(), ob_start(); the current working directory will be changed to the root directory (such as '/').

Notice: bug found when running the script under web browser.

Reproduce code:
---------------
<?php
function test_cb() {
  echo getcwd() . "<br>\n";
}

register_shutdown_function("test_cb");
test_cb();
?>

Expected result:
----------------
/home/hightman/public_html/my_php4<br>
/home/hightman/public_html/my_php4<br>

Actual result:
--------------
/home/hightman/public_html/my_php4<br>
/<br>

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-09-05 08:08 UTC] derick@php.net
Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. 

Thank you for your interest in PHP.

.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Fri May 09 06:01:27 2025 UTC