What is upcoming in the new release of PHP, and why should I care? What problems will these improvements help to solve?

Cheers,

Edit: After posting the question I have found these links that also provide some insight.

link|improve this question

1  
this question never should have been asked a simple google search would have sufficed – George Jempty Apr 4 '09 at 13:50
@George: not really, this information is dispersed, there is no official "what's new in PHP6" page. – vartec Apr 4 '09 at 21:14
4  
More importantly "WHEN is PHP 6 coming?" – Jon Winstanley May 13 '09 at 9:27
feedback

4 Answers

up vote 17 down vote accepted
  • Unicode support, which will allow you to seamlessly use multiple languages within your applications. Programmers in non-English-speaking countries will even be able to name their functions and classes in their own native language.

  • Some advanced OO concepts such as namespaces and late static binding.

  • Removal of ereg extension, 'register_globals', 'magic_quotes' and 'safe_mode'

  • Alternative PHP Cache

  • foreach($nested_arrays as list($a,$b))

link|improve this answer
XMLWriter is already there in since 5.1, namespaces, removal of ereg etc. in 5.3. – vartec Apr 4 '09 at 11:57
Since it was the point of the question - why is the removal of ereg/register_globals etc, or the alternative PHP cache interesting? (or rather, "why should I care?") – dbr Apr 4 '09 at 21:45
@dbr: ereg is slow, limited, binary-unsafe, non-unicode. preg functions obsolete it completely. register_globals is poor programming practice leading to insecure and hard to maintain code. APC doubles speed of PHP and adds shared storage (simple, tiny memcached). – porneL Apr 5 '09 at 11:23
@porneL: dbr's point, as I understood it, is, that this is nothing new. You don't have to use ereg, PCRE is here since PHP4, APC is in PECL, no problem installing it. register_globals, magic_quotes and safe_mode are of by default anyways. – vartec Apr 6 '09 at 9:54
Ugh, the foreach thing looks very ugly compared to the python syntax for it. – ThiefMaster Nov 6 '11 at 10:30
feedback

Before 6.0 there's PHP 5.3, which will include:

PHP 6.0 will add to that native UTF-8 support in all functions including PHP parser itself (meaning, that you'll be able to use UTF-8 variable and functions names). As with all new releases, there will be some cleanup, removing obsolete extensions (like e.g. ereg), and bundling in by default some extensions from PECL (e.g. APC).

Read more at IBM's developerWorks.


BTW. XMLWriter is nothing new, it's been in PHP since 5.1

link|improve this answer
1  
That's the real answer, +1. – IonuČ› G. Stan Apr 4 '09 at 20:28
I was hoping for PHP to introduce preprocessed macro like C somethong like define("ERROR", "myerrorfunc($1, $2)"); – Marco Demaio Apr 6 '11 at 11:46
feedback

Most of the new features have been backported to 5.3, so the only major change in 6.0, will be native unicode support for strings (UTF-8 is not the same as unicode, for the record).

link|improve this answer
feedback

Official TODO list for PHP6.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.