Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

want to upgrade PHP 5.3 to 5.4? [closed]

Tags:

php

I just started working with php so I don't have any idea what is involved with upgrades. Currently, I'm working with php 5.3, and would like to move to 5.4. How is this done? Is it just a simple installation of 5.4 ? Will this break code written in 5.3?

like image 811
Kanchan Avatar asked Oct 24 '12 05:10

Kanchan


1 Answers

Migrating from PHP 5.3.x to PHP 5.4.x is the info regarding such upgrade.

Especially have a look into Backward Incompatible Changes section. Some functions were removed in PHP 5.4 and if your PHP 5.3 code is using them, you will get errors. For example, session_register() function does not exist in PHP 5.4

like image 149
bhovhannes Avatar answered Oct 19 '22 04:10

bhovhannes