Home
last modified time | relevance | path

Searched refs:obj (Results 351 – 375 of 413) sorted by relevance

1...<<11121314151617

/PHP-5.6/Zend/
H A Dzend_API.c264 zval *obj; in parse_arg_object_to_string() local
265 MAKE_STD_ZVAL(obj); in parse_arg_object_to_string()
268 *arg = obj; in parse_arg_object_to_string()
273 efree(obj); in parse_arg_object_to_string()
1043 EG(scope) = Z_OBJCE_P(obj); in zend_merge_properties()
3137 zval **obj = NULL; in zend_is_callable_ex() local
3144 if (obj && method && in zend_is_callable_ex()
3155 memcpy(ptr, Z_STRVAL_PP(obj), Z_STRLEN_PP(obj)); in zend_is_callable_ex()
3156 ptr += Z_STRLEN_PP(obj); in zend_is_callable_ex()
3178 fcc->object_ptr = *obj; in zend_is_callable_ex()
[all …]
/PHP-5.6/ext/standard/tests/class_object/
H A Dproperty_exists_error.phpt13 $object_or_class = "obj";
H A Dget_object_vars_basic_001.phpt5 /* Prototype : proto array get_object_vars(object obj)
H A Dget_object_vars_variation_003.phpt5 /* Prototype : proto array get_object_vars(object obj)
65 // loop through each element of the array for obj
/PHP-5.6/ext/simplexml/
H A DREADME13 foreach ($obj->node_name as $elem) {
/PHP-5.6/ext/json/tests/
H A Dpass001.1.phpt86 $obj = json_decode($test);
87 var_dump($obj);
93 $obj_enc = json_encode($obj, JSON_PARTIAL_OUTPUT_ON_ERROR);
100 $obj = json_decode($obj_enc);
101 var_dump($obj);
H A Dpass001.1_64bit.phpt86 $obj = json_decode($test);
87 var_dump($obj);
93 $obj_enc = json_encode($obj, JSON_PARTIAL_OUTPUT_ON_ERROR);
100 $obj = json_decode($obj_enc);
101 var_dump($obj);
/PHP-5.6/ext/gmp/
H A Dgmp.c429 zval *obj; in gmp_create() local
430 MAKE_STD_ZVAL(obj); in gmp_create()
431 gmp_create_ex(obj, gmpnum_target TSRMLS_CC); in gmp_create()
432 return obj; in gmp_create()
461 static HashTable *gmp_get_debug_info(zval *obj, int *is_temp TSRMLS_DC) /* {{{ */ in gmp_get_debug_info() argument
463 HashTable *ht, *props = zend_std_get_properties(obj TSRMLS_CC); in gmp_get_debug_info()
464 mpz_ptr gmpnum = GET_GMP_FROM_ZVAL(obj); in gmp_get_debug_info()
480 static zend_object_value gmp_clone_obj(zval *obj TSRMLS_DC) /* {{{ */ in gmp_clone_obj()
482 gmp_object *old_object = zend_object_store_get_object(obj TSRMLS_CC); in gmp_clone_obj()
483 zend_object_value new_object_val = gmp_create_object(Z_OBJCE_P(obj) TSRMLS_CC); in gmp_clone_obj()
[all …]
/PHP-5.6/Zend/RFCs/
H A D001.txt70 14 function foo($obj)
72 16 $obj->setMember("foo");
85 result in the $obj->setMember("foo") call being called on a duplicate
/PHP-5.6/ext/spl/
H A Dspl_iterators.h172 PHPAPI int spl_iterator_apply(zval *obj, spl_iterator_apply_func_t apply_func, void *puser TSRMLS_D…
/PHP-5.6/ext/standard/tests/array/
H A Darray_fill_keys_variation2.phpt26 $obj = new classA();
/PHP-5.6/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetch_serialize.phpt88 $obj = myclass::singleton('Creating object');
89 $myobj = serialize($obj);
/PHP-5.6/ext/spl/tests/
H A Dobserver_001.phpt10 function __construct($name = 'obj')
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_class_mysqli_stmt_interface.phpt132 $obj = new stdClass();
133 if (!is_object($stmt = new mysqli_stmt($link, $obj)))
H A Dmysqli_connect.phpt22 $obj = new stdClass();
23 if (!is_null($tmp = @mysqli_connect($obj)))
/PHP-5.6/Zend/tests/
H A Ddebug_backtrace_options.phpt38 $obj = new self();
39 $obj->doCall($dowhat, $how);
/PHP-5.6/ext/json/
H A DJSON_parser.c600 zval *obj; in parse_JSON_ex() local
603 obj = z; in parse_JSON_ex()
605 ALLOC_INIT_ZVAL(obj); in parse_JSON_ex()
609 object_init(obj); in parse_JSON_ex()
611 array_init(obj); in parse_JSON_ex()
614 jp->the_zstack[jp->top] = obj; in parse_JSON_ex()
/PHP-5.6/
H A D.gdbinit69 set $handle = $t->object.value.obj.handle
70 set $handlers = $t->object.value.obj.handlers
71 set $zobj = (zend_object *)$eg.objects_store.object_buckets[$handle].bucket.obj.object
217 set $handle = $zvalue->value.obj.handle
218 set $handlers = $zvalue->value.obj.handlers
/PHP-5.6/ext/soap/
H A Dphp_soap.h203 zval* add_soap_fault(zval *obj, char *fault_code, char *fault_string, char *fault_actor, zval *faul…
H A Dsoap.c52 static void clear_soap_fault(zval *obj TSRMLS_DC);
1345 zval *obj; in PHP_METHOD() local
1358 MAKE_COPY_ZVAL(&obj, service->soap_object); in PHP_METHOD()
3282 static void clear_soap_fault(zval *obj TSRMLS_DC)
3284 if (obj != NULL && obj->type == IS_OBJECT) {
3296 add_property_zval(obj, "__soap_fault", fault);
3302 if (Z_TYPE_P(obj) != IS_OBJECT) {
3303 object_init_ex(obj, soap_fault_class_entry);
3313 add_property_string(obj, "faultcode", fault_code, 1);
3346 add_property_zval(obj, "detail", fault_detail);
[all …]
/PHP-5.6/ext/xml/tests/
H A Dxml_set_object_variation2.phpt11 /* Prototype : proto int xml_set_object(resource parser, object &obj)
80 // loop through each element of the array for obj
/PHP-5.6/sapi/apache/
H A Dmod_php5.c423 static int sapi_apache_get_target_uid(uid_t *obj TSRMLS_DC) in sapi_apache_get_target_uid()
425 *obj = ap_user_id; in sapi_apache_get_target_uid()
432 static int sapi_apache_get_target_gid(gid_t *obj TSRMLS_DC) in sapi_apache_get_target_gid()
434 *obj = ap_group_id; in sapi_apache_get_target_gid()
/PHP-5.6/ext/standard/tests/general_functions/
H A Dvar_export-locale.phpt267 foreach($valid_objects as $obj) {
269 var_export( $obj );
271 var_export( $obj, FALSE);
273 var_dump( var_export( $obj, TRUE) );
/PHP-5.6/ext/exif/tests/
H A Dexif_imagetype_variation1.phpt23 return "obj'ct";
197 Warning: exif_imagetype(obj'ct): failed to open stream: No such file or directory in %s on line %d
/PHP-5.6/ext/dom/
H A Dphp_dom.h97 dom_object *dom_object_get_data(xmlNodePtr obj);

Completed in 86 milliseconds

1...<<11121314151617