Home
last modified time | relevance | path

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

12345678910>>...17

/PHP-5.6/ext/openssl/tests/
H A Dopenssl_private_encrypt_basic.phpt17 $obj = new test;
22 var_dump(openssl_private_encrypt($data, $encrypted, $obj));
23 var_dump(openssl_private_encrypt($obj, $encrypted, $privkey));
H A Dopenssl_public_encrypt_basic.phpt17 $obj = new test;
22 var_dump(openssl_public_encrypt($data, $encrypted, $obj));
23 var_dump(openssl_public_encrypt($obj, $encrypted, $pubkey));
/PHP-5.6/Zend/tests/
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();
H A Dbug34199.phpt2 Bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler)
H A Dbug26229.phpt12 $obj = new array_iterator;
16 foreach ($obj as $property => $value)
/PHP-5.6/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);
H A Ddestructor_visibility_001.phpt17 $obj = new Derived;
19 unset($obj);
H A Ddestructor_visibility_003.phpt20 $obj = new Derived;
22 unset($obj); // Derived::__destruct is being called not Base::__destruct
/PHP-5.6/ext/reflection/tests/
H A DReflectionExtension_constructor_error.phpt8 $obj = new ReflectionExtension();
9 $test = $obj instanceof ReflectionExtension;
/PHP-5.6/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.6/ext/spl/tests/
H A DSplFileObject_fwrite_variation_001.phpt9 $obj = New SplFileObject($file,'w');
10 $obj->fwrite('test_write',4);
H A DSplFileObject_fwrite_variation_002.phpt9 $obj = New SplFileObject($file,'w');
10 $obj->fwrite('test_write',12);
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'),
/PHP-5.6/ext/json/tests/
H A Dpass003.phpt19 $obj = json_decode($test);
20 var_dump($obj);
26 $obj_enc = json_encode($obj);
33 $obj = json_decode($obj_enc);
34 var_dump($obj);
H A Dbug73113.phpt17 $obj = new JsonSerializableObject();
19 echo json_encode($obj);
/PHP-5.6/ext/standard/tests/class_object/
H A Dget_object_vars_error_001.phpt5 /* Prototype : proto array get_object_vars(object obj)
19 $obj = new stdclass();
21 var_dump( get_object_vars($obj, $extra_arg) );
/PHP-5.6/ext/standard/tests/array/
H A Dbug43505.phpt15 $obj = new Test();
21 $t = count($obj);
/PHP-5.6/ext/standard/tests/strings/
H A Dbug72663_3.phpt7 class obj {
14 $poc = 'O:8:"stdClass":1:{i:0;O:3:"obj":1:{s:4:"ryat";R:1;';

Completed in 40 milliseconds

12345678910>>...17