Home
last modified time | relevance | path

Searched refs:obj (Results 226 – 250 of 502) sorted by relevance

12345678910>>...21

/PHP-7.4/Zend/tests/
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));
H A Dbug40757.phpt8 function getFields($obj){
9 return get_object_vars($obj);
H A Dbug75420.15.phpt12 $obj = new Test;
15 $obj[$name] = 1;
H A Dbug75420.9.phpt12 $obj = new Test;
14 var_dump($obj[$name] ?? 12);
/PHP-7.4/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation1.phpt45 $obj = new object_temp("$dirname/symlink_link_linkinfo_is_link_link.tmp");
49 var_dump( symlink($filename, $obj->linkname) );
51 $linkinfo = linkinfo($obj->linkname);
54 var_dump( is_link($obj->linkname) );
56 unlink($obj->linkname);
63 var_dump( link($filename, $obj->linkname) );
65 $linkinfo = linkinfo($obj->linkname);
68 var_dump( is_link($obj->linkname) );
70 unlink($obj->linkname);
/PHP-7.4/ext/standard/tests/array/
H A Dbug43505.phpt13 $obj = new Test();
19 $t = count($obj);
H A Dbug70713.phpt6 class obj
21 $arr = array('string' => new obj);
/PHP-7.4/tests/classes/
H A Dfactory_and_singleton_005.phpt11 $obj = new test;
12 $obj = NULL;
H A Dfactory_and_singleton_006.phpt11 $obj = new test;
12 $obj = NULL;
H A Ddestructor_visibility_001.phpt15 $obj = new Derived;
17 unset($obj);
H A Diterators_005.phpt9 $obj = new test;
11 foreach($obj as $v);
/PHP-7.4/ext/standard/tests/serialize/
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).':"…
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-7.4/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);
/PHP-7.4/ext/intl/formatter/
H A Dformatter_class.h32 static inline NumberFormatter_object *php_intl_number_format_fetch_object(zend_object *obj) { in php_intl_number_format_fetch_object() argument
33 return (NumberFormatter_object *)((char*)(obj) - XtOffsetOf(NumberFormatter_object, zo)); in php_intl_number_format_fetch_object()
/PHP-7.4/ext/intl/msgformat/
H A Dmsgformat_class.h36 static inline MessageFormatter_object *php_intl_messageformatter_fetch_object(zend_object *obj) { in php_intl_messageformatter_fetch_object() argument
37 return (MessageFormatter_object *)((char*)(obj) - XtOffsetOf(MessageFormatter_object, zo)); in php_intl_messageformatter_fetch_object()
/PHP-7.4/ext/spl/
H A Dspl_directory.h105 static inline spl_filesystem_object *spl_filesystem_from_obj(zend_object *obj) /* {{{ */ { in spl_filesystem_from_obj() argument
106 return (spl_filesystem_object*)((char*)(obj) - XtOffsetOf(spl_filesystem_object, std)); in spl_filesystem_from_obj()
112 static inline spl_filesystem_iterator* spl_filesystem_object_to_iterator(spl_filesystem_object *obj) in spl_filesystem_object_to_iterator() argument
117 it->object = (void *)obj; in spl_filesystem_object_to_iterator()
/PHP-7.4/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-7.4/ext/intl/dateformat/
H A Ddateformat_class.h35 static inline IntlDateFormatter_object *php_intl_dateformatter_fetch_object(zend_object *obj) { in php_intl_dateformatter_fetch_object() argument
36 return (IntlDateFormatter_object *)((char*)(obj) - XtOffsetOf(IntlDateFormatter_object, zo)); in php_intl_dateformatter_fetch_object()
/PHP-7.4/ext/standard/tests/strings/
H A Dbug72663_3.phpt5 class obj {
12 $poc = 'O:8:"stdClass":1:{i:0;O:3:"obj":1:{s:4:"ryat";R:1;';
/PHP-7.4/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()

Completed in 35 milliseconds

12345678910>>...21