How can I make the deprecated functions to work in PHP's latest version? I don't want to change the alternate function of it in each and every page, it's highly impossible in the maintenance project which I have. So please let me know if there is a way to make the deprecated functions to work.
If you really can't change the code you've got, how about creating wrappers for the new functions that have the same specification as the deprecated function? So in other words, you create a new function that calls the deprecated function but takes in the arguments of the old function. Might work...