Home
last modified time | relevance | path

Searched refs:obj (Results 376 – 400 of 502) sorted by relevance

1...<<1112131415161718192021

/PHP-7.4/Zend/tests/
H A Dbug71818.phpt25 $obj = new MemoryLeak();
H A Doffset_bool.phpt19 $obj = new stdClass;
20 var_dump($bool[$obj]);
H A Doffset_long.phpt19 $obj = new stdClass;
20 var_dump($long[$obj]);
H A Doffset_null.phpt19 $obj = new stdClass;
20 var_dump($null[$obj]);
H A Doffset_string.phpt22 $obj = new stdClass;
23 var_dump($str[$obj]);
H A Dbug61782.phpt24 $obj = new LatchkeyKid();
/PHP-7.4/ext/mysqli/
H A Dphp_mysqli_structs.h133 static inline mysqli_object *php_mysqli_fetch_object(zend_object *obj) { in php_mysqli_fetch_object() argument
134 return (mysqli_object *)((char*)(obj) - XtOffsetOf(mysqli_object, zo)); in php_mysqli_fetch_object()
151 int (*r_func)(mysqli_object *obj, zval *retval, zend_bool quiet);
152 int (*w_func)(mysqli_object *obj, zval *value);
H A Dmysqli.c295 static int mysqli_write_na(mysqli_object *obj, zval *newval) in mysqli_write_na() argument
308 mysqli_object *obj; in mysqli_read_property() local
311 obj = Z_MYSQLI_P(object); in mysqli_read_property()
322 if (obj->prop_handler != NULL) { in mysqli_read_property()
348 mysqli_object *obj; in mysqli_write_property() local
360 obj = Z_MYSQLI_P(object); in mysqli_write_property()
362 if (obj->prop_handler != NULL) { in mysqli_write_property()
367 hnd->write_func(obj, value); in mysqli_write_property()
394 mysqli_object *obj = Z_MYSQLI_P(object); in mysqli_object_has_property() local
433 mysqli_object *obj = Z_MYSQLI_P(object); in mysqli_object_get_debug_info() local
[all …]
/PHP-7.4/ext/zend_test/
H A Dtest.c139 zend_object *obj = zend_objects_new(class_type); in zend_test_class_new() local
140 object_properties_init(obj, class_type); in zend_test_class_new()
141 obj->handlers = &zend_test_class_handlers; in zend_test_class_new()
142 return obj; in zend_test_class_new()
/PHP-7.4/ext/standard/tests/serialize/
H A D__serialize_004.phpt34 $obj = new Wakeup([new Unserialize([new Wakeup([new Unserialize([])])])]);
35 var_dump($s = serialize($obj));
/PHP-7.4/ext/standard/tests/file/
H A Dfscanf_variation54.phpt28 $obj = new foo(); //creating new object
36 fwrite($file_handle, $obj);
/PHP-7.4/Zend/
H A Dzend_exceptions.c211 zval obj, tmp; in zend_default_exception_new_ex() local
217 Z_OBJ(obj) = object = zend_objects_new(class_type); in zend_default_exception_new_ex()
218 Z_OBJ_HT(obj) = &default_exception_handlers; in zend_default_exception_new_ex()
231 base_ce = i_get_exception_base(&obj); in zend_default_exception_new_ex()
236 zend_update_property_ex(base_ce, &obj, ZSTR_KNOWN(ZEND_STR_FILE), &tmp); in zend_default_exception_new_ex()
941 zend_object *obj; in zend_throw_exception_ex() local
946 obj = zend_throw_exception(exception_ce, message, code); in zend_throw_exception_ex()
948 return obj; in zend_throw_exception_ex()
955 zend_object *obj = zend_throw_exception(exception_ce, message, code); in zend_throw_error_exception() local
956 ZVAL_OBJ(&ex, obj); in zend_throw_error_exception()
[all …]
/PHP-7.4/tests/classes/
H A Dstatic_this.phpt25 $obj = new TestClass;
H A Dinterfaces_003.phpt20 $obj = new MyTestClass;
/PHP-7.4/Zend/tests/object_types/
H A Dtype_hint_in_function.phpt7 function a(object $obj) {}
H A Dtype_hint_in_class_method.phpt7 public function a(object $obj) {}
/PHP-7.4/ext/tidy/tests/
H A D008.phpt2 Accessing the error buffer via $obj->error_buf...
/PHP-7.4/tests/lang/
H A Dbug30578.phpt26 $obj = new Example;
/PHP-7.4/ext/standard/
H A DMakefile.frag.w329 $(BUILD_DIR)\ext\standard\basic_functions.obj: $(PHP_SRC_DIR)\Zend\zend_language_parser.h
/PHP-7.4/ext/standard/tests/array/
H A Darray_fill_keys_variation1.phpt24 $obj = new classA();
35 $mixedArray = array($fp, $obj, $simpleStr, $emptyArr, 2, $bool, $float);
/PHP-7.4/ext/spl/tests/
H A Dbug70168.phpt25 ["obj"]=>
/PHP-7.4/ext/intl/collator/
H A Dcollator_convert.h31 zval* collator_convert_object_to_string( zval* obj, zval *rv );
/PHP-7.4/ext/standard/tests/general_functions/
H A Dvar_export_basic6.phpt94 foreach($valid_objects as $key => $obj) {
96 var_export( $obj );
98 var_export( $obj, FALSE);
100 var_dump( var_export( $obj, TRUE) );
/PHP-7.4/ext/intl/breakiterator/
H A Dbreakiterator_iterators.cpp257 IntlIterator_object *obj = php_intl_iterator_fetch_object(*object_ptr); in IntlPartsIterator_get_method() local
258 if (obj->iterator && !Z_ISUNDEF(obj->iterator->data)) { in IntlPartsIterator_get_method()
259 zval *break_iter_zv = &obj->iterator->data; in IntlPartsIterator_get_method()
/PHP-7.4/ext/pdo/tests/
H A Dpdo_026.phpt72 foreach($stmt as $obj) {
73 var_dump($obj);

Completed in 47 milliseconds

1...<<1112131415161718192021