On Tue, Jan 9, 2018 at 3:06 PM, Michael Morris wrote:
> Before I begin, and without picking on anyone specific, I want to say that
> it is generally unhelpful to say that because I, or others, do not know how
> the engine is set up that it is impossible to make any meaningful
> contributions to t
Hi,
I use the following code the register a new ZEND_USER_OPCODE handler
zend_uchar opcode = ZEND_VM_LAST_OPCODE + 1;
while (1) {
if (opcode == 255) {
return FAILURE;
} else if (zend_get_user_opcode_handler(opcode) == NULL)
Before I begin, and without picking on anyone specific, I want to say that
it is generally unhelpful to say that because I, or others, do not know how
the engine is set up that it is impossible to make any meaningful
contributions to the list or on this issue specifically. My clients don't
underst
>
> > Thanks, fixed!
> A few more little changes:
>
> %s/Global symbol tales/Global symbol tables/
> %s/operands jut refer/operands just refer/
>
> Thanks for the docs. I'm off to read https://wiki.php.net/phpng-upgrading
> as I got segfaults in my
> php extension when upgrading from 5 to 7 due to
> Thanks, fixed!
A few more little changes:
%s/Global symbol tales/Global symbol tables/
%s/operands jut refer/operands just refer/
Thanks for the docs. I'm off to read https://wiki.php.net/phpng-upgrading as I
got segfaults in my
php extension when upgrading from 5 to 7 due to zend_parse_parame
Hi Craig
2018-01-09 16:13 GMT+01:00 Craig Comstock :
> Hi,
>
> I was upgrading php5 to php7 and managing some C extension code. Noticed a
> small typo in https://wiki.php.net/phpng-int and wanted to contribute where I
> could since I'll likely be supporting our use of PHP and extensions for a
>
Hi,
I was upgrading php5 to php7 and managing some C extension code. Noticed a
small typo in https://wiki.php.net/phpng-int and wanted to contribute where I
could since I'll likely be supporting our use of PHP and extensions for a while.
%s/world/word/
is the very small change I found so far o