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

Reinhold Weber's Blog: From PHP to Ruby - 30 similarities and differences

Michael Kimsal's Blog: Latest podcast (WebDevRadio)

Wez Furlong's Blog: PDO FUD; less anecdotes, more facts

DevShed: Building a Search Engine with MySQL and PHP 5

ThinkPHP Blog: Extending class SoapServer (PHP5) for debugging


Community Events











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


introduction language api series unittest phpunit community example development framework zendframework2 podcast functional composer opinion database testing release interview code

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