Home
last modified time | relevance | path

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

1...<<111213141516171819

/PHP-7.0/ext/standard/tests/file/
H A Dfscanf_variation54.phpt28 $obj = new foo(); //creating new object
36 fwrite($file_handle, $obj);
/PHP-7.0/Zend/
H A Dzend_closures.c284 ZEND_API const zend_function *zend_get_closure_method_def(zval *obj) /* {{{ */ in zend_get_closure_method_def() argument
286 zend_closure *closure = (zend_closure *)Z_OBJ_P(obj); in zend_get_closure_method_def()
291 ZEND_API zval* zend_get_closure_this_ptr(zval *obj) /* {{{ */ in zend_get_closure_this_ptr() argument
293 zend_closure *closure = (zend_closure *)Z_OBJ_P(obj); in zend_get_closure_this_ptr()
388 int zend_closure_get_closure(zval *obj, zend_class_entry **ce_ptr, zend_function **fptr_ptr, zend_o… in zend_closure_get_closure() argument
392 if (Z_TYPE_P(obj) != IS_OBJECT) { in zend_closure_get_closure()
396 closure = (zend_closure *)Z_OBJ_P(obj); in zend_closure_get_closure()
476 static HashTable *zend_closure_get_gc(zval *obj, zval **table, int *n) /* {{{ */ in zend_closure_get_gc() argument
478 zend_closure *closure = (zend_closure *)Z_OBJ_P(obj); in zend_closure_get_gc()
/PHP-7.0/ext/standard/tests/class_object/
H A Dget_object_vars_variation_001.phpt5 /* Prototype : proto array get_object_vars(object obj)
/PHP-7.0/ext/mysqli/
H A Dphp_mysqli_structs.h149 static inline mysqli_object *php_mysqli_fetch_object(zend_object *obj) { in php_mysqli_fetch_object() argument
150 return (mysqli_object *)((char*)(obj) - XtOffsetOf(mysqli_object, zo)); in php_mysqli_fetch_object()
167 zval *(*r_func)(mysqli_object *obj, zval *retval);
168 int (*w_func)(mysqli_object *obj, zval *value);
/PHP-7.0/tests/classes/
H A Dfactory_and_singleton_009.phpt14 $obj = new test;
H A Dfactory_and_singleton_010.phpt14 $obj = new test;
H A Ddestructor_visibility_002.phpt17 $obj = new Derived;
H A Dfactory_and_singleton_003.phpt13 $obj = new test;
H A Dfactory_and_singleton_004.phpt13 $obj = new test;
H A Dinterfaces_003.phpt20 $obj = new MyTestClass;
/PHP-7.0/ext/standard/tests/array/
H A Darray_fill_keys_variation1.phpt24 $obj = new classA();
35 $mixedArray = array($fp, $obj, $simpleStr, $emptyArr, 2, $bool, $float);
H A Darray_fill_keys_variation4.phpt27 $obj = new classA();
36 var_dump( array_fill_keys($array, $obj) );
/PHP-7.0/Zend/tests/
H A Doffset_string.phpt22 $obj = new stdClass;
23 var_dump($str[$obj]);
/PHP-7.0/ext/intl/breakiterator/
H A Dbreakiterator_iterators.cpp260 IntlIterator_object *obj = php_intl_iterator_fetch_object(*object_ptr); in IntlPartsIterator_get_method() local
261 if (obj->iterator && !Z_ISUNDEF(obj->iterator->data)) { in IntlPartsIterator_get_method()
262 zval *break_iter_zv = &obj->iterator->data; in IntlPartsIterator_get_method()
/PHP-7.0/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.0/ext/tidy/tests/
H A D008.phpt2 Accessing the error buffer via $obj->error_buf...
/PHP-7.0/tests/lang/
H A Dbug30578.phpt26 $obj = new Example;
/PHP-7.0/ext/pdo/tests/
H A Dpdo_026.phpt72 foreach($stmt as $obj) {
73 var_dump($obj);
H A Dpdo_018.phpt92 foreach($objs as $obj)
94 $cname = get_class($obj);
113 foreach($objs as $idx => $obj)
115 $ctype = $ctypes[get_class($obj)];
116 if (method_exists($obj, 'serialize'))
118 $val = $obj->serialize();
/PHP-7.0/ext/dom/
H A Dnodelist.c54 int dom_nodelist_length_read(dom_object *obj, zval *retval) in dom_nodelist_length_read() argument
61 objmap = (dom_nnodemap_object *)obj->ptr; in dom_nodelist_length_read()
/PHP-7.0/ext/standard/tests/serialize/
H A Dserialization_objects_001.phpt34 echo "\n--- testing reference to an obj ---\n";
78 --- testing reference to an obj ---
/PHP-7.0/ext/intl/collator/
H A Dcollator_convert.h31 zval* collator_convert_object_to_string( zval* obj, zval *rv );
/PHP-7.0/ext/spl/tests/
H A Dbug70168.phpt25 ["obj"]=>
H A Dobserver_002.phpt43 function __construct($name = 'obj')
101 function contains($obj)
103 return $this->observers->contains($obj);
/PHP-7.0/ext/com_dotnet/
H A DREADME18 $obj->foo[43]->bar();
25 $obj = new COM("...");
26 $obj[1]->foo();

Completed in 33 milliseconds

1...<<111213141516171819