vote up 12 vote down star
3

PHP6 haven't been released yet. But because of the majority of websites that uses PHP, once PHP6 is released, programmers would support that version.

PHP6 can break code that works on PHP4 and PHP5. The purpose of this question is to have a nice list of what PHP programmers should be aware of before PHP6 is released. This can help PHP programmers be ready for PHP6.

What will break when PHP6 once released?

flag

58% accept rate
php6dev.blogspot.com Has a more comprehensive list of changes, I've listed the ones that "Will Fail". Most the others should be warnings or have work-arounds. – Kent Fredric Sep 23 '08 at 8:27

9 Answers

vote up 4 vote down

Code depending on register globals. ( Should be gone already, but if you're migrating from php4... well. you'll be in for a shock )

link|flag
vote up 3 vote down

Code depending on Magic GPC Quotes ( Supposed to start WARNING us as of 5.3, and should be gone by 6 )

link|flag
vote up 3 vote down

Stuff needing "Safe Mode"

link|flag
vote up 8 vote down

PHP 4 stuff like: $HTTP_GET_VARS and $HTTP_POST_VARS, use $_POST and $_GET instead if you weren't already doing that.

Also in the future the following things are likely to change:

  • Open and closing tags (<% %> <? ?>) may be removed. Use <?php and ?> instead.

  • datebase functions(mysql_*) will be replaced by the PDO library eventually.

Source: http://www.php.net/~derick/meeting-notes.html

link|flag
vote up 2 vote down

they are also removing support for dynamic breaks, ereg and call time pass by reference.

link|flag
vote up 2 vote down

{} for string offsets is deprecated (but will not be removed for 6.0 though, according to the PHP6 TODO list). Instead, [] is recommended for accessing characters in a string - since it's already the only way to access array members.

So, given $foo is a string, you should prefer $foo[1] to $foo{1}.

link|flag
vote up 2 vote down

This one is less obvious, but I just discovered. Allegedly, __autoload will now get passed fully qualified names to load, complete with namespace/class.

So any existing code that utilizes autoloading will have to be partially re-written to accommodate this fact.

link|flag
How does this work? Will it be like Namespace::Class instead of Class? Seems more sensible to add $namespace as a seperate param to be honest. – Ross Mar 2 at 11:35
well, more likely to be Namespace\Class , just to be a pain. – Kent Fredric Mar 3 at 1:45
( seeing that \ is now the namespace seperator and all ) – Kent Fredric Mar 3 at 1:46
vote up 3 vote down

Here is a collection of PHP6 specific changes that can break PHP5 code.

link|flag
vote up 1 vote down

Obviously all deprecated constructs will break (they're deprecated for a reason).

  • always use php.ini-recommended (default php.ini-dist is intended for compatibility with poor code)
  • always develop with all error reporting enabled, including E_STRICT and E_DEPRECATED

There's one non-deprecated thing that may cause problems: treating of strings as binary blobs.

  • use UTF-8, and never assume byte = character.

Strings will behave differently depending on where they come from – they can be interpreted as meaningless bytes (e.g. an image you've stuffed into database) or characters in specific encoding. If your application is ignorant about encodings, you'll have problems.

link|flag

Your Answer

Get an OpenID
or

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