[PHP-DEV] php wiki user, want to contribute edits

2018-01-09 Thread 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 while. %s/world/word/ is the very small change I found so far o

Re: [PHP-DEV] php wiki user, want to contribute edits

2018-01-09 Thread Kalle Sommer Nielsen
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 >

Re: [PHP-DEV] php wiki user, want to contribute edits

2018-01-09 Thread Craig Comstock
> 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

Re: [PHP-DEV] php wiki user, want to contribute edits

2018-01-09 Thread Niklas Keller
> > > 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

Re: [PHP-DEV] [RFC][DISCUSSION] Strong Typing Syntax

2018-01-09 Thread Michael Morris
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

[PHP-DEV] The master branch breaks the ZEND_USER_OPCODE

2018-01-09 Thread Haitao Lv
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)

Re: [PHP-DEV] [RFC][DISCUSSION] Strong Typing Syntax

2018-01-09 Thread Rasmus Lerdorf
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