Home
last modified time | relevance | path

Searched refs:obj (Results 251 – 275 of 502) sorted by relevance

1...<<1112131415161718192021

/PHP-7.3/Zend/tests/
H A Dbug75420.10.phpt12 $obj = new Test;
15 var_dump($obj[$name] ?? 12);
H A Dbug75420.12.phpt12 $obj = new Test;
15 var_dump(empty($obj[$name]));
H A Dbug26229.phpt12 $obj = new array_iterator;
16 foreach ($obj as $property => $value)
H A Dbug34199.phpt2 Bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler)
H A Dbug65911.phpt16 $obj = new B();
17 $obj->go();
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 Dbug37632.phpt16 public function doTest(A1 $obj)
19 $obj->test();
44 static public function doTest(A2 $obj)
47 $obj->test();
H A Dforeach_004.phpt26 $obj = new IT($trap);
29 foreach ($obj as $key => &$val) echo "$val\n";
33 unset($obj);
/PHP-7.3/ext/json/tests/
H A Dbug73113.phpt17 $obj = new JsonSerializableObject();
19 echo json_encode($obj);
/PHP-7.3/ext/standard/tests/serialize/
H A Dbug35895.phpt19 $obj = new Child();
20 serialize($obj);
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_fetch_object_no_object.phpt16 $obj = mysqli_fetch_object($res);
17 var_dump(gettype($obj));
/PHP-7.3/tests/lang/
H A Dbug7515.phpt7 class obj {
11 $o->root=new obj();
/PHP-7.3/ext/reflection/tests/
H A DReflectionClass_getModifiers_basic.phpt17 $obj = new ReflectionClass($class);
18 var_dump($obj->getModifiers());
H A Dbug77882.phpt23 $obj = $ref->newInstance();
29 $obj = $ref->newInstanceArgs([]);
H A D024.phpt15 $obj = new ReflectionObject($x);
16 echo $obj;
/PHP-7.3/ext/intl/resourcebundle/
H A Dresourcebundle_class.h35 static inline ResourceBundle_object *php_intl_resourcebundle_fetch_object(zend_object *obj) { in php_intl_resourcebundle_fetch_object() argument
36 return (ResourceBundle_object *)((char*)(obj) - XtOffsetOf(ResourceBundle_object, zend)); in php_intl_resourcebundle_fetch_object()
/PHP-7.3/ext/xmlreader/
H A Dphp_xmlreader.h52 static inline xmlreader_object *php_xmlreader_fetch_object(zend_object *obj) { in php_xmlreader_fetch_object() argument
53 return (xmlreader_object *)((char*)(obj) - XtOffsetOf(xmlreader_object, std)); in php_xmlreader_fetch_object()
/PHP-7.3/ext/spl/tests/
H A DSplFileObject_ftruncate_error_001.phpt24 $obj = New SplFileObject("SPLtest://ftruncate_test");
26 $obj->ftruncate(1);
H A DSplObjectStorage_unserialize_nested.phpt27 ["obj"]=>
38 ["obj"]=>
/PHP-7.3/ext/pdo/tests/
H A Dpdo_025.phpt43 foreach($stmt as $obj) {
44 var_dump($obj);
57 foreach($stmt as $obj) {
58 var_dump($obj);
/PHP-7.3/ext/intl/transliterator/
H A Dtransliterator_class.h37 static inline Transliterator_object *php_intl_transliterator_fetch_object(zend_object *obj) { in php_intl_transliterator_fetch_object() argument
38 return (Transliterator_object *)((char*)(obj) - XtOffsetOf(Transliterator_object, zo)); in php_intl_transliterator_fetch_object()
/PHP-7.3/tests/classes/
H A Dctor_name_clash.phpt17 $obj = new derived();
18 $obj->base();
/PHP-7.3/ext/com_dotnet/
H A Dcom_typeinfo.c261 ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, i… in php_com_locate_typeinfo() argument
268 if (obj) { in php_com_locate_typeinfo()
270 if (V_VT(&obj->v) == VT_DISPATCH) { in php_com_locate_typeinfo()
286 if (obj->typeinfo) { in php_com_locate_typeinfo()
287 ITypeInfo_AddRef(obj->typeinfo); in php_com_locate_typeinfo()
288 return obj->typeinfo; in php_com_locate_typeinfo()
290 IDispatch_GetTypeInfo(V_DISPATCH(&obj->v), 0, LANG_NEUTRAL, &typeinfo); in php_com_locate_typeinfo()
295 } else if (dispname && obj->typeinfo) { in php_com_locate_typeinfo()
298 ITypeInfo_GetContainingTypeLib(obj->typeinfo, &typelib, &idx); in php_com_locate_typeinfo()
300 if (V_VT(&obj->v) == VT_DISPATCH) { in php_com_locate_typeinfo()
[all …]

Completed in 85 milliseconds

1...<<1112131415161718192021