As of PHP 7.3.0, internal function handlers use the ZEND_FASTCALL
calling convention. On architectures where this doesn't match the
default calling convention, the build fails (or even worse things may
happen during runtime).
We fix this by typedeffing our own pcs_zif_handler according to the
PHP version.
As of PHP 7.3.0, internal function handlers use the
ZEND_FASTCALL
calling convention. On architectures where this doesn't match the default calling convention, the build fails (or even worse things may happen during runtime).We fix this by typedeffing our own
pcs_zif_handler
according to the PHP version.