News Feed
Jobs Feed
Sections




News Archive
Greg Beaver's Blog:
subtle PHP 4 to PHP 5 difference regarding objects
March 27, 2006 @ 07:05:53

PHP has a lot going on "under the hood" for each request that's made, so its no wonder that issues with PHP5 code might see some problems when shifted down to PHP4. Greg Beaver caught something in the PEAR installer centered around objects.

Recently, some code in the PEAR installer was discovered to be invalid in PHP 4. After a bit of investigation, I realized that the significant difference in the way objects are represented internally in PHP 5 was the culprit.

In PHP 5, this displays as bool(true), but in PHP 4, it displays bool(false). The reason is that in PHP 4, objects are simply glorified associative arrays, and so PHP treats the above [example] code exactly the same.

He strongly suggests that, to help with this issue, you always check to ensure (with is_object) that what you're passing is a true object.

He's made an update to the post since it was originally released, mentioning how some classes will also define their own cast handlers.

0 comments voice your opinion now!
objects php4 php5 difference internal cast handler objects php4 php5 difference internal cast handler


blog comments powered by Disqus

Similar Posts

Developer.com: PHP 5 OOP - Protecting Data With Visibility

Lukas Smith's Blog: Its the end of the world as we know it.

Marco Tabini's Blog: Now showing: PHP's true colours

The PHP Grind: Get real about PHP4 vs. PHP5!

DevShed: Building Object-Oriented Web Pages with Inheritance in PHP 5


Community Events











Don't see your event here?
Let us know!


interview database opinion language tool development community framework series podcast zendframework2 testing conference object functional introduction release code composer example

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework