MCPcopy Index your code
hub / github.com/MapServer/MapServer / mapscript_create_result

Function mapscript_create_result

mapscript/php/result.c:142–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140};
141
142void mapscript_create_result(resultObj *result, parent_object parent,
143 zval *return_value TSRMLS_DC)
144{
145 php_result_object * php_result;
146 object_init_ex(return_value, mapscript_ce_result);
147 php_result = (php_result_object *)zend_object_store_get_object(return_value TSRMLS_CC);
148 php_result->result = result;
149
150 php_result->parent = parent;
151 MAPSCRIPT_ADDREF(parent.val);
152}
153
154static void mapscript_result_object_destroy(void *object TSRMLS_DC)
155{

Callers 2

mapscript_fetch_objectFunction · 0.85
layer.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected