I was checking out the syntax for strstr and was banging me head as to why $s = stristr ($s, ".com", TRUE) wasnt working when I realized under the changelog it was mentioned :
6.0.0 Added the before_needle parameter.
So they've started adding PHP 6 stuff into the docs.
So how far away is PHP 6 alpha/beta/RC?
How far away is PHP6
Moderator: General Moderators
- WaldoMonster
- Forum Contributor
- Posts: 225
- Joined: Mon Apr 19, 2004 6:19 pm
- Contact:
You can already download working Win32 compiles from PHP Snapshots.
I don't know if these are alpha or beta versions.
I don't know if these are alpha or beta versions.
Some of new stuff (5.3):
# Namespaces: A way to help you organizing your code.
# Late Static Binding: Gives you the class name used when calling a static method.
# Dynamic static calls: $c = "classname"; $c::someMetod();
# Improved ini-handling: .htaccess file like per-directory configuration and much more
# __callStatic magic method: similar to __call but for static calls
# mysqlnd: a replacement for libmysql for better PHP-MySQL-Integration
# getopt() on any platform (inclding windows)
# Namespaces: A way to help you organizing your code.
# Late Static Binding: Gives you the class name used when calling a static method.
# Dynamic static calls: $c = "classname"; $c::someMetod();
# Improved ini-handling: .htaccess file like per-directory configuration and much more
# __callStatic magic method: similar to __call but for static calls
# mysqlnd: a replacement for libmysql for better PHP-MySQL-Integration
# getopt() on any platform (inclding windows)
Re: How far away is PHP6
Anyone have any clue as to when PHP 5.3 would be released ?
I've been googling for a long time, no ETA available.
Main interest is in late static binding, and namespaces.
I've been googling for a long time, no ETA available.
Main interest is in late static binding, and namespaces.
- Ambush Commander
- DevNet Master
- Posts: 3698
- Joined: Mon Oct 25, 2004 9:29 pm
- Location: New Jersey, US
Re: How far away is PHP6
I assume, though, it'll happen after most of the todos here are addressed.