![]() |
|
|
Differences between PHP4 and PHP5 |
|
Iced Cap
Latest Blog Post:
php|architect’s Guide to Programming wi... Posts: 3,105
Location: Toronto, Ontario
|
Here's a quick overview of what has changed between PH4 and PHP5. PHP5 for the most part is backwards compatible with PHP4, but there are a couple key changes that might break your PHP4 script in a PHP5 environment. If you aren't already, I stronly suggest you start developing for PHP5. Many hosts these days offer a PHP5 environment, or a dual PHP4/PHP5 setup so you should be fine on that end. Using all of these new features is worth even a moderate amount of trouble you might go through finding a new host!
Note: Some of the features listed below are only in PHP5.2 and above. Object Model The new OOP features in PHP5 is probably the one thing that everyone knows for sure about. Out of all the new features, these are the ones that are talked about most! Passed by Reference This is an important change. In PHP4, everything was passed by value, including objects. This has changed in PHP5 -- all objects are now passed by reference. PHP Code:
Note that this also means you can stop using the reference operator (&). It was common practice to pass your objects around using the & operator to get around the annoying pass-by-value functionality in PHP4. Class Constants and Static Methods/Properties You can now create class constants that act much the same was as define()'ed constants, but are contained within a class definition and accessed with the :: operator. Static methods and properties are also available. When you declare a class member as static, then it makes that member accessible (through the :: operator) without an instance. (Note this means within methods, the $this variable is not available) Visibility Class methods and properties now have visibility. PHP has 3 levels of visibility:
PHP5 introduces a new unified constructor/destructor names. In PHP4, a constructor was simply a method that had the same name as the class itself. This caused some headaches since if you changed the name of the class, you would have to go through and change every occurrence of that name. In PHP5, all constructors are named __construct(). That is, the word construct prefixed by two underscores. Other then this name change, a constructor works the same way. Also, the newly added __destruct() (destruct prefixed by two underscores) allows you to write code that will be executed when the object is destroyed. Abstract Classes PHP5 lets you declare a class as abstract. An abstract class cannot itself be instantiated, it is purely used to define a model where other classes extend. You must declare a class abstract if it contains any abstract methods. Any methods marked as abstract must be defined within any classes that extend the class. Note that you can also include full method definitions within an abstract class along with any abstract methods. Interfaces PHP5 introduces interfaces to help you design common APIs. An interface defines the methods a class must implement. Note that all the methods defined in an interface must be public. An interface is not designed as a blueprint for classes, but just a way to standardize a common API. The one big advantage to using interfaces is that a class can implement any number of them. You can still only extend on parent class, but you can implement an unlimited number of interfaces. Magic Methods There are a number of "magic methods" that add an assortment to functionality to your classes. Note that PHP reserves the naming of methods prefixed with a double-underscore. Never name any of your methods with this naming scheme! Some magic methods to take note of are __call, __get, __set and __toString. These are the ones I find most useful. Finality You can now use the final keyword to indicate that a method cannot be overridden by a child. You can also declare an entire class as final which prevents it from having any children at all. The __autoload Function Using a specially named function, __autoload (there's that double-underscore again!), you can automatically load object files when PHP encounters a class that hasn't been defined yet. Instead of large chunks of include's at the top of your scripts, you can define a simple autoload function to include them automatically. PHP Code:
Standard PHP Library PHP now includes a bunch of functionality to solve common problems in the so-named SPL. There's a lot of cool stuff in there, check it out! For example, we can finally create classes that can be accessed like arrays by implementing the ArrayAccess interface. If we implement the Iterator interface, we can even let our classes work in situations like the foreach construct. Miscellaneous Features Type Hinting PHP5 introduces limited type hinting. This means you can enforce what kind of variables are passed to functions or class methods. The drawback is that (at this time), it will only work for classes or arrays -- so no other scalar types like integers or strings. To add a type hint to a parameter, you specify the name of the class before the $. Beware that when you specify a class name, the type will be satisfied with all of its subclasses as well. PHP Code:
Exceptions PHP finally introduces exceptions! An exception is basically an error. By using an exception however, you gain more control the simple trigger_error notices we were stuck with before. An exception is just an object. When an error occurs, you throw an exception. When an exception is thrown, the rest of the PHP code following will not be executed. When you are about to perform something "risky", surround your code with a try block. If an exception is thrown, then your following catch block is there to intercept the error and handle it accordingly. If there is no catch block, a fatal error occurs. PHP Code:
There is a new error level defined as E_STRICT (value 2048). It is not included in E_ALL, if you wish to use this new level you must specify it explicitly. E_STRICT will notify you when you use depreciated code. I suggest you enable this level so you can always stay on top of things. Foreach Construct and By-Reference Value The foreach construct now lets you define the 'value' as a reference instead of a copy. Though I would suggest against using this feature, as it can cause some problems if you aren't careful: PHP Code:
New Functions PHP5 introduces a slew of new functions. You can get a list of them from the PHP Manual. New Extensions PHP5 also introduces new default extensions.
The PHP manual has a list of changes that will affect backwards compatibility. You should definately read through that page, but here is are three issues I have found particularly tiresome:
__________________
Devlog - Latest PHP Article: MVC with the Zend Framework ::The New Tech - Technology Forum |
|
|
|
| Sponsored Links (We share ad revenue): |
|
|
Re: Differences between PHP4 and PHP5 |
|
Fetchez la vache!
Latest Blog Post:
Pretty pretty please…. Posts: 1,703
Name: Thierry
Location: In the void
|
Wow...
Impressive... Thank you for the time you must have taken to put this together, Schroeder. I learnt a few interesting things here.
__________________
Listen to the ducky: "This is awesome!!!" |
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Ultra Talker
Posts: 345
|
gg! - sticky?
__________________
Website Design, Website Development, and Search Engine Optimisation. Visit v2Media Web Site Design, Brisbane. |
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Moderator
![]()
Latest Blog Post:
My Favorite Isaac Asimov Story Posts: 4,093
Name: John Alexander
|
Wow! They made PHP an awful lot more like ASP.NET. Good stuff!
|
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Vi Veri Veniversum Vivus
Posts: 1,167
Name: Dragos-Valentin
Location: Cluj-Napoca, RO
|
metho, you can use this post: PHP Readme: Tips, Tricks and Must Read Threads to get here at any time
![]()
__________________
. » Please remember to add to my Talkupation if you enjoyed my post. Thank you :) . |
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
hosting-rebate.com
Latest Blog Post:
Hostgator Coupons $93 Posts: 282
Location: hosting-rebate.com
|
nice list. i will need to view this few times to get them digested
![]() indead its become more common that customer is requesting php 5 and some are asking php 5.2 already. its fast. |
|
|
|
|
|
php |
|
Junior Talker
Posts: 2
|
in php 3 version the error occur " exception handling" and u u may have add two headers in one page
|
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Ultra Talker
Latest Blog Post:
Bloom Where You Are Posts: 328
Name: Douglas Adams
Location: Kalkaska Michigan
|
Thanks for the very useful and informative thread.
__________________
Technology Blog | Political Blog | Health Blog | Alternative Health News | Home Based Business News | Weight Loss Blog | Gold Medal Gourmet Extracts |
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Skilled Talker
Posts: 94
Name: Ved
|
good one
|
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Ultra Talker
Posts: 440
Name: Matt
|
Everyone really needs to learn this because PHP 4 will no longer be supported by the end of this year (2007). Plus with PHP 6 around the corner (well.. Sort of.). Those innovative PHP 5 users will continue their ways with PHP 6. And those slightly behind people will most likely end up with PHP 5. Keep up with the times
. If this has already been mentioned then sorry.
__________________
PHP Code:
|
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Eat, Sleep, Code
Latest Blog Post:
XDnet.co.uk The new name of Dansgalaxy Hosting. Posts: 5,408
Name: Dan
Location: Swindon
|
gd post, very helpful... of course most of the stuff u said changed in PHP i dont know anyway... 0.o... YET!
![]() Dan.
__________________
Support Children's Cancer and Leukaemia Movement shop online at buy.at/calm ~ Calmcharity.org PHP Code:
|
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Novice Talker
Posts: 13
|
thanks for the thread... would be in trouble without that!
|
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Eat, Sleep, Code
Latest Blog Post:
XDnet.co.uk The new name of Dansgalaxy Hosting. Posts: 5,408
Name: Dan
Location: Swindon
|
I feel a disturbence in the force, must have been that spam i just read.
*cough* ^ SPAM ^ ABOVE *cough* Dan EDIT: ****! i ment to give bad TP to linux900 but accidently gave good so now he has 21 when he had -2 eff it. ¬.¬ can a admin take it back for me? ![]()
__________________
Support Children's Cancer and Leukaemia Movement shop online at buy.at/calm ~ Calmcharity.org PHP Code:
Last edited by dansgalaxy : 07-24-2007 at 06:40 PM. |
|
|
|
|
|
Re: Differences between PHP4 and PHP5 |
|
Average Talker
Posts: 28
Location: TurnkeyForms.com
|
Great thread, I haven't seen that list before, very useful
__________________
Private Label Articles | Website Templates | Header Templates Content Databases - Add quality content to your website |
|
|
|