From:             [EMAIL PROTECTED]
Operating system: Linux
PHP version:      4CVS-2007-02-27 (CVS)
PHP Bug Type:     *Directory/Filesystem functions
Bug description:  cwd is reset when shutdown handler runs

Description:
------------
When this script is run with the Apache1 sapi the second CWD is reset to
/.

This is an issue for both php 4.4.4 and php 5.2.1rc3.

Reproduce code:
---------------
<?php
echo "CWD = ", getcwd(), "\n";

function handler()
{
    echo "CWD = ", getcwd(), "\n";
    echo dirname( __FILE__ ), "\n";
}

register_shutdown_function( 'handler' );
?>



-- 
Edit bug report at http://bugs.php.net/?id=40661&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=40661&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=40661&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=40661&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=40661&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=40661&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=40661&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=40661&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=40661&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=40661&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=40661&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=40661&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=40661&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=40661&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=40661&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=40661&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=40661&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=40661&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=40661&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=40661&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=40661&r=mysqlcfg

Reply via email to