kalle Thu May 7 03:14:07 2009 UTC Modified files: (Branch: PHP_5_3) /php-src UPGRADING Log: * use is a reserved keyword * notes to Windows section http://cvs.php.net/viewvc.cgi/php-src/UPGRADING?r1=1.1.2.3.2.1.2.4&r2=1.1.2.3.2.1.2.5&diff_format=u Index: php-src/UPGRADING diff -u php-src/UPGRADING:1.1.2.3.2.1.2.4 php-src/UPGRADING:1.1.2.3.2.1.2.5 --- php-src/UPGRADING:1.1.2.3.2.1.2.4 Tue Apr 21 04:35:01 2009 +++ php-src/UPGRADING Thu May 7 03:14:07 2009 @@ -1,4 +1,4 @@ -$Id: UPGRADING,v 1.1.2.3.2.1.2.4 2009/04/21 04:35:01 kalle Exp $ +$Id: UPGRADING,v 1.1.2.3.2.1.2.5 2009/05/07 03:14:07 kalle Exp $ UPGRADE NOTES - PHP 5.3 @@ -31,7 +31,7 @@ 1. Reserved words and classes ============================= -- **namespace** and **goto** are now reserved keywords. +- **namespace**, **use** and **goto** are now reserved keywords. - **Closure** is now a reserved class. (Used by lambda and closure.) @@ -234,7 +234,14 @@ - PHP Windows binaries target i586 or later. i386 and i486 are not supported. - Windows support has been added for the following functions: getopt(), - imagecolorclosesthwb(), mcrypt_create_iv(), inet_ntop() and inet_pton(). + imagecolorclosesthwb(), mcrypt_create_iv(), inet_ntop(), inet_pton(), + getmxrr(), checkdnsrr(), dns_get_record(), linkinfo(), readlink(), + symlink(), link(), fnmatch(), stream_socket_pair(), time_nanosleep(), + time_sleep_until() and socket_create_pair(). + +- Its now possible to use hardlinks on Windows using the link() function, + and symbolic links via the symlink() function. Hardlinks are available + as of Windows 2000 and symbolic links as of Windows Vista. =================== 12. New in PHP 5.3:
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php