avijit Posted April 9, 2009 Share Posted April 9, 2009 If you are used to working with PHP4 you can use PHP5 with no problems because the differences are not significant and the changes were made so that programmers would not be confused. An example would be class builders which, in PHP4 were functions within the classes bearing the same name as the class. In PHP5 it is firstly checked if there is a function (method) __construct (). If it does not exist, check if there is a function (method) which has the same name as the class. This means that even if you are not aware of the latest news in the domain of PHP5, your scripts will function without any problem. Quote Link to comment https://forums.phpfreaks.com/topic/153381-difference-between-php-4-and-php-5/ Share on other sites More sharing options...
corbin Posted April 9, 2009 Share Posted April 9, 2009 So.... do you just like spamming your links? Lame. Quote Link to comment https://forums.phpfreaks.com/topic/153381-difference-between-php-4-and-php-5/#findComment-805880 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.