MCPcopy Create free account
hub / github.com/MapServer/MapServer / mapscript_create_hashtable

Function mapscript_create_hashtable

mapscript/php/hashtable.c:232–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230};
231
232void mapscript_create_hashtable(hashTableObj *hashtable, parent_object parent, zval *return_value TSRMLS_DC)
233{
234 php_hashtable_object * php_hashtable;
235 object_init_ex(return_value, mapscript_ce_hashtable);
236 php_hashtable = (php_hashtable_object *)zend_object_store_get_object(return_value TSRMLS_CC);
237 php_hashtable->hashtable = hashtable;
238
239 php_hashtable->parent = parent;
240
241 MAPSCRIPT_ADDREF(parent.val);
242}
243
244static void mapscript_hashtable_object_destroy(void *object TSRMLS_DC)
245{

Callers 1

mapscript_fetch_objectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected