A
Anonymous
Guest
We've recently upgraded to PHP 7.2 from 5.x and are aware of all the incompatiblity issues. We are getting an error each time we attempt to contact the server and the error is the following:
Fatal error: Uncaught Error: Call to undefined function ereg_replace() in....
When we check the file it complains about, we do not see the function being used. In fact we've done a global search through our entire PHP code base and we are not using any ereg_* functions. I don't understand how this is possible? Is it possible that there is some 3rd party library we are integrating with that is using this function and PHP is complaining about that? If so how do we go about isolating the library? The error shows up in files that don't have any ereg_* functions.
Fatal error: Uncaught Error: Call to undefined function ereg_replace() in....
When we check the file it complains about, we do not see the function being used. In fact we've done a global search through our entire PHP code base and we are not using any ereg_* functions. I don't understand how this is possible? Is it possible that there is some 3rd party library we are integrating with that is using this function and PHP is complaining about that? If so how do we go about isolating the library? The error shows up in files that don't have any ereg_* functions.