View Issue Details

IDProjectCategoryView StatusLast Update
0000139XdebugUncategorizedpublic2005-08-04 14:55
Reportermccabe Assigned To 
PrioritynormalSeveritytrivialReproducibilityalways
Status resolvedResolutionno change required 
Summary0000139: typemap_get doesent give a mapping for hash
Description

THe reponse to typemap_get doesent map "hash" to "hash" (only "array" to "hash")
Shouldn't it?

ie, a:
{"hash", "hash", NULL},

added to
char *xdebug_dbgp_typemap[XDEBUG_TYPES_COUNT][3] = {}
in of debug_handler_dbgp.c

TagsNo tags attached.
Operating System
PHP Version4.3.10

Activities

derick

2005-08-04 14:55

administrator   ~0000274

PHP doesn't have a "hash" type, only an array which can be both associative of numeric-indexed (or even mixed). As there is no way to know what style of indexes it uses, we have to map "array" to "hash".