Home
last modified time | relevance | path

Searched refs:obj (Results 151 – 175 of 390) sorted by relevance

12345678910>>...16

/PHP-5.5/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) {
H A D036.phpt23 $obj = new chld();
24 $obj->displayHim();
/PHP-5.5/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);
H A DReflectionExtension_constructor_error.phpt8 $obj = new ReflectionExtension();
9 $test = $obj instanceof ReflectionExtension;
/PHP-5.5/ext/simplexml/tests/
H A Dbug46048.phpt12 $obj = simplexml_load_string($xml);
13 print_r(get_object_vars($obj));
/PHP-5.5/Zend/tests/
H A Dbug65579.phpt20 $obj = new TestClass();
21 var_dump(get_class_methods($obj));
H A Dbug26166.phpt16 private $obj;
20 $this->obj = new Foo();
25 return $this->obj->__toString();
H A Dbug40757.phpt8 function getFields($obj){
9 return get_object_vars($obj);
H A Dbug65911.phpt16 $obj = new B();
17 $obj->go();
H A Dbug37632.phpt16 public function doTest(A1 $obj)
19 $obj->test();
44 static public function doTest(A2 $obj)
47 $obj->test();
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_objects_012.phpt17 $obj = new stdclass;
18 $a[0] = $obj;
34 $obj = new stdclass;
35 $a[0] = $obj;
50 $obj = new stdclass;
52 $contaner->a = $obj;
68 $obj = new stdclass;
70 $contaner->a = $obj;
/PHP-5.5/ext/pdo/tests/
H A Dpdo_037.phpt14 $obj = new MyStatement;
15 var_dump($obj->foo());
/PHP-5.5/ext/openssl/tests/
H A D014.phpt16 $obj = new test;
21 var_dump(openssl_private_encrypt($data, $encrypted, $obj));
22 var_dump(openssl_private_encrypt($obj, $encrypted, $privkey));
H A D015.phpt16 $obj = new test;
21 var_dump(openssl_public_encrypt($data, $encrypted, $obj));
22 var_dump(openssl_public_encrypt($obj, $encrypted, $pubkey));
/PHP-5.5/tests/classes/
H A Dctor_name_clash.phpt17 $obj = new derived();
18 $obj->base();
H A Dfactory_and_singleton_005.phpt13 $obj = new test;
14 $obj = NULL;
H A Dfactory_and_singleton_006.phpt13 $obj = new test;
14 $obj = NULL;
H A Ddestructor_inheritance.phpt20 $obj = new derived;
22 unset($obj);
/PHP-5.5/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;
H A Dtypemap007.phpt32 $obj = new book;
33 $obj->a = (string)$sxe->a;
34 $obj->b = (string)$sxe->b;
35 return $obj;
/PHP-5.5/ext/spl/tests/
H A Dspl_autoload_007.phpt23 $obj = new MyAutoLoader;
34 array($obj, 'notExist'),
35 array($obj, 'noAccess'),
36 array($obj, 'autoLoad'),
37 array($obj, 'dynaLoad'),
H A DSplFileObject_fwrite_variation_001.phpt9 $obj = New SplFileObject($file,'w');
10 $obj->fwrite('test_write',4);
/PHP-5.5/ext/json/tests/
H A Dpass003.phpt21 $obj = json_decode($test);
22 var_dump($obj);
28 $obj_enc = json_encode($obj);
35 $obj = json_decode($obj_enc);
36 var_dump($obj);

Completed in 29 milliseconds

12345678910>>...16