Home
last modified time | relevance | path

Searched refs:obj (Results 176 – 200 of 487) sorted by relevance

12345678910>>...20

/PHP-7.1/ext/reflection/tests/
H A DReflectionExtension_getName_basic.phpt8 $obj = new ReflectionExtension('reflection');
9 var_dump($obj->getName());
H A DReflectionExtension_constructor_basic.phpt8 $obj = new ReflectionExtension('reflection');
9 $test = $obj instanceof ReflectionExtension;
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-7.1/Zend/tests/
H A Dbug37212.phpt23 public function copyValue($obj)
25 $this->value = $obj->getValue();
26 $this->value = $obj->value; // value defined in common base class
H A Dbug39990.phpt11 $obj=new Foo();
12 foreach($obj->arr as $value)
H A Dbug70288.phpt11 function test(&$obj) {
12 var_dump($obj);
H A Dbug68118.phpt7 $obj = new stdClass;
8 $obj->test = 'meow';
H A Dthis_in_catch.phpt14 $obj = new C;
15 $obj->foo();
H A Dbug75420.7.phpt9 $obj = new Test;
12 $obj->$name = 1;
H A Dbug65579.phpt20 $obj = new TestClass();
21 var_dump(get_class_methods($obj));
/PHP-7.1/ext/spl/tests/
H A Dbug70365.phpt5 class obj {
20 $exploit = 'a:5:{i:0;i:1;i:1;C:16:"SplObjectStorage":'.strlen($inner).':{'.$inner.'}i:2;O:3:"obj":1…
42 object(obj)#%d (1) {
H A Dbug70366.phpt5 class obj {
20 $exploit = 'a:5:{i:0;i:1;i:1;C:19:"SplDoublyLinkedList":'.strlen($inner).':{'.$inner.'}i:2;O:3:"obj
43 object(obj)#%d (1) {
H A DSplFixedArray_serialize.phpt8 $obj = new stdClass;
9 $obj->prop = 'value';
13 $array[3] = $obj;
H A DSplObjectStorage_getHash.phpt12 public function getHash($obj) {
25 public function getHash($obj) {
39 public function getHash($obj) {
/PHP-7.1/ext/standard/tests/serialize/
H A Dbug72731.phpt6 class obj {
13 $poc = 'O:8:"stdClass":1:{i:0;O:3:"obj":1:{s:4:"ryat";R:1;}}';
H A Dbug70436.phpt6 class obj implements Serializable
28 $inner = 'C:3:"obj":3:{rya}';
29 $exploit = 'a:4:{i:0;i:1;i:1;C:3:"obj":'.strlen($inner).':{'.$inner.'}i:2;s:'.strlen($fakezval).':"…
/PHP-7.1/Zend/tests/varSyntax/
H A DparenthesesDeref.phpt14 $obj = (object) ['a' => 0, 'b' => ['var_dump', 1]];
15 (clone $obj)->b[0](1);
/PHP-7.1/ext/standard/tests/array/
H A Dkey_exists_variation2.phpt32 echo "obj\n";
38 $obj = new ObjectA();
41 $f = array('foo' => 'baz', $obj);
45 $g = array($obj, 'foo' => 'baz');
66 obj
H A Dsizeof_object1.phpt35 $obj = new sizeof_class();
38 var_dump( sizeof($obj) );
40 var_dump( sizeof($obj, COUNT_NORMAL) );
42 var_dump( sizeof($obj, COUNT_RECURSIVE) );
/PHP-7.1/ext/xmlwriter/
H A Dphp_xmlwriter.h52 static inline ze_xmlwriter_object *php_xmlwriter_fetch_object(zend_object *obj) { in php_xmlwriter_fetch_object() argument
53 return (ze_xmlwriter_object *)((char*)(obj) - XtOffsetOf(ze_xmlwriter_object, std)); in php_xmlwriter_fetch_object()
/PHP-7.1/tests/lang/
H A D037.phpt25 $obj = new chld();
26 $obj->displayMe();
H A Dforeach_with_object_001.phpt12 $obj = new Test();
13 foreach ($obj->c()->a as $value) {
/PHP-7.1/ext/simplexml/tests/
H A Dbug46048.phpt12 $obj = simplexml_load_string($xml);
13 print_r(get_object_vars($obj));
/PHP-7.1/ext/standard/tests/assert/
H A Dbug73303.phpt18 $obj = new Test();
19 $obj->main();

Completed in 37 milliseconds

12345678910>>...20