summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-05-07 03:14:07 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-05-07 03:14:07 +0000
commit036314329ab0eefde99a926b1b1a0d04c68c46d4 (patch)
treebedbe69c89ecc75f0a32db5d4c9a8fcaad55be15 /UPGRADING
parent996eab8983690e93f8640dcbc1c917e65c800a15 (diff)
downloadphp-git-036314329ab0eefde99a926b1b1a0d04c68c46d4.tar.gz
* use is a reserved keyword
* notes to Windows section
Diffstat (limited to 'UPGRADING')
-rwxr-xr-xUPGRADING11
1 files changed, 9 insertions, 2 deletions
diff --git a/UPGRADING b/UPGRADING
index 248234cfae..bc6902fa1f 100755
--- a/UPGRADING
+++ b/UPGRADING
@@ -31,7 +31,7 @@ UPGRADE NOTES - PHP 5.3
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 @@ UPGRADE NOTES - PHP 5.3
- 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: