Home
last modified time | relevance | path

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

1...<<11121314151617181920>>...23

/PHP-8.1/Zend/tests/
H A Doverloaded_assign_prop_return_value.phpt8 $obj = new Overloaded;
9 $x = $obj->prop = new stdClass;
H A Dbug75420.7.phpt9 $obj = new Test;
12 $obj->$name = 1;
H A Dbug26166.phpt16 private $obj;
20 $this->obj = new Foo();
25 return $this->obj->__toString();
H A Dbug65579.phpt20 $obj = new TestClass();
21 var_dump(get_class_methods($obj));
H A Dbug75420.phpt11 $obj = new Test;
13 var_dump($obj->$name ?? 12);
H A Dbug75420.1.phpt10 $obj = new Test;
12 var_dump($obj->$name ?? 12);
H A Dbug75420.2.phpt10 $obj = new Test;
13 var_dump($obj->$name ?? 12);
H A Dbug75420.3.phpt10 $obj = new Test;
12 var_dump(empty($obj->$name));
H A Dbug75420.4.phpt10 $obj = new Test;
13 var_dump(empty($obj->$name));
/PHP-8.1/ext/reflection/tests/
H A DReflectionExtension_info_basic.phpt8 $obj = new ReflectionExtension('reflection');
10 $testa = $obj->info();
H A DReflectionClass_isIterateable_variation1.phpt10 function dump_iterateable($obj)
12 $reflection = new ReflectionClass($obj);
/PHP-8.1/ext/spl/tests/
H A DSplObjectStorage_getHash.phpt13 public function getHash($obj) {
26 public function getHash($obj): string {
40 public function getHash($obj): string {
H A Dbug71838.phpt19 $obj = unserialize($serialized);
20 var_dump($obj->getA());
H A DSplFileObject_getCurrentLine_invalid_override.phpt13 $obj = new MySplFileObject(__FILE__);
15 var_dump($obj->current());
/PHP-8.1/tests/classes/
H A Ddestructor_inheritance.phpt18 $obj = new derived;
20 unset($obj);
H A Ddestructor_visibility_003.phpt18 $obj = new Derived;
20 unset($obj); // Derived::__destruct is being called not Base::__destruct
/PHP-8.1/tests/lang/
H A D036.phpt23 $obj = new chld();
24 $obj->displayHim();
/PHP-8.1/ext/standard/tests/serialize/
H A Dbug73052.phpt6 class obj {
13 $poc = 'O:3:"obj":1:{';
H A Dbug73825.phpt5 $obj = unserialize('O:8:"00000000":');
6 var_dump($obj);
/PHP-8.1/Zend/tests/named_params/
H A D__call.phpt20 $obj = new class { public function __toString() { return "STR"; } };
25 $test->method(b: $obj);
28 Test::method(b: $obj);
/PHP-8.1/ext/intl/formatter/
H A Dformatter_class.h30 static inline NumberFormatter_object *php_intl_number_format_fetch_object(zend_object *obj) { in php_intl_number_format_fetch_object() argument
31 return (NumberFormatter_object *)((char*)(obj) - XtOffsetOf(NumberFormatter_object, zo)); in php_intl_number_format_fetch_object()
/PHP-8.1/ext/intl/msgformat/
H A Dmsgformat_class.h34 static inline MessageFormatter_object *php_intl_messageformatter_fetch_object(zend_object *obj) { in php_intl_messageformatter_fetch_object() argument
35 return (MessageFormatter_object *)((char*)(obj) - XtOffsetOf(MessageFormatter_object, zo)); in php_intl_messageformatter_fetch_object()
/PHP-8.1/ext/opcache/tests/jit/
H A Dassign_041.phpt15 $obj = new Test;
16 $ref =& $obj->prop;
/PHP-8.1/ext/opcache/tests/opt/
H A Dfe_fetch_001.phpt13 $obj = (object)$arr;
14 foreach ($obj as $val)
/PHP-8.1/ext/soap/tests/
H A Dtypemap003.phpt32 $obj = new book;
33 $obj->a = (string)$sxe->a;
34 $obj->b = (string)$sxe->b;
35 return $obj;

Completed in 32 milliseconds

1...<<11121314151617181920>>...23