php-src/UPGRADING.INTERNALS

24 lines
737 B
Plaintext
Raw Normal View History

2010-09-02 10:32:32 +00:00
$Id$
UPGRADE NOTES - PHP 5.3.4
1. Internal API changes
========================
1. Internal API changes
========================
2010-09-10 14:01:44 +00:00
a. stat/lstat support
2010-09-02 10:32:32 +00:00
lstat is now available on all platforms. On unix-like platform
php_sys_lstat is an alias to lstat (when avaible). On Windows it is now
available using php_sys_lstat. php_sys_stat and php_sys_lstat usage is recommended
instead of calling lstat directly, to ensure portability.
2010-09-10 14:01:44 +00:00
b. readlink support
readlink is now available on all platforms. On unix-like platform
php_sys_readlink is an alias to readlink (when avaible). On Windows it is now
available using php_sys_readlink. php_sys_readlink usage is recommended
instead of calling readlink directly, to ensure portability.