xref: /PHP-5.3/UPGRADING.INTERNALS (revision 391ff768)
1$Id$
2
3UPGRADE NOTES - PHP 5.3.4
4
51. Internal API changes
6
7========================
81. Internal API changes
9========================
10
11	a. stat/lstat support
12
13lstat is now available on all platforms. On unix-like platform
14php_sys_lstat is an alias to lstat (when avaible). On Windows it is now
15available using php_sys_lstat. php_sys_stat and php_sys_lstat usage is recommended
16instead of calling lstat directly, to ensure portability.
17
18	b. readlink support
19
20readlink is now available on all platforms. On unix-like platform
21php_sys_readlink is an alias to readlink (when avaible). On Windows it is now
22available using php_sys_readlink. php_sys_readlink usage is recommended
23instead of calling readlink directly, to ensure portability.
24