|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-01 18:35 UTC] eddie at omegaware dot com
[2003-06-01 20:37 UTC] sniper@php.net
[2003-06-01 21:20 UTC] sniper@php.net
[2003-06-29 20:09 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 01:00:01 2025 UTC |
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.