In PHP 5.3 is there a way to rename a function or "hook" a function.
There is the rename_function()
within "APD" which has been broken since ~2004. If you try and build it on PHP 5.3 you'll get this error:
'struct _zend_compiler_globals' has no member named 'extended_info'
This is a really easy error to fix, just change this line:
GC(extended_info) = 1;
to
CG(compiler_options) |= ZEND_COMPILE_EXTENDED_INFO;
I modified my php.ini and the APD shows up in my phpinfo() as it should. However when i call rename_function()
the PHP page doesn't load and I get a segmentation fault in my /var/log/apache2/error.log
.
Is there anyway to fix APD to work with a modern version of PHP? Or is there another method to rename functions? Why on earth is vital feature not in php!??!?! (Gotta love python :)
The up-to-date runkit extension can be found on http://github.com/zenovich/runkit It supports all contemporary versions of PHP released for the time being (from 4.4 to 5.4+). This runkit is official and supported.
Sincerely, Dmitry Zenovich
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With