File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / UPGRADING.INTERNALS
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:51 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_3_10, HEAD
php

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>