[PATCH] Fix for 27097

php.internals

Stefan Walk

22 years ago
Hi! There is an inconsistency in the Zend API (See #27097) so integers are reported as "integer" by zend_zval_type_name but "long" by zend_parse_arg_impl causing confusion for users not knowing C, the attached patch fixes it. Stefan
-- Regards, Stefan Walk <swalk@prp.physik.tu-darmstadt.de>

Derick Rethans

22 years ago
On Fri, 30 Jan 2004, Stefan Walk wrote:
> Hi! > > There is an inconsistency in the Zend API (See #27097) so integers are > reported as "integer" by zend_zval_type_name but "long" by > zend_parse_arg_impl causing confusion for users not knowing C, > the attached patch fixes it.
This is wrong, it's a long, so keep it like that. Derick