summaryrefslogtreecommitdiff
path: root/UPGRADING.INTERNALS
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-09-10 14:01:44 +0000
committerPierre Joye <pajoye@php.net>2010-09-10 14:01:44 +0000
commitbf0a5ea7452032ca09d71835c548d9d5db398850 (patch)
tree9107a9e0e95b1b1743f67b64cf685f9eded80f43 /UPGRADING.INTERNALS
parent2441ddf10ee7572ba305879719d6697fbcdf7a5e (diff)
downloadphp-git-bf0a5ea7452032ca09d71835c548d9d5db398850.tar.gz
- add php_sys_readlink
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r--UPGRADING.INTERNALS7
1 files changed, 7 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index 79572eb2e9..d86dfc6f6b 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -20,3 +20,10 @@ 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.
+
+ 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.