ID: 23943
User updated by: eddie at omegaware dot com
-Summary: disp_invokeex won't work with multiple args.
Reported By: eddie at omegaware dot com
Status: Open
Bug Type: *Compile Issues
PHP Version: 4.3.2
New Comment:
fixed the summary field..
Previous Comments:
------------------------------------------------------------------------
[2003-06-01 18:33:14] eddie at omegaware dot com
Is there any reason why the REGISTER_*_CONSTANT macros (ie
REGISTER_LONG_CONSTANT) use sizeof instead of strlen for calculating
the length of the constant name? I am running into problems which
resort to me having to not use this macros to define functions but to
use the raw zend_register_*_constant function..
example.
using the macro with a literal string for the name works fine.
REGISTER_LONG_CONSTANT("MYCONSTANT",4567,CONST_CS|CONST_PERISISTENT);
however using the macro with a char * variable does not.
char *name = "MYCONSTANT";
REGISTER_LONG_CONSTANT(name,4567,CONST_CS|CONST_PERSISTENT);
The later results with the name_len variable to
zend_register_long_contant being 4, the size of the char *.
This has caused me problems when I was trying to register a char* array
of constants.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=23943&edit=1