Home
last modified time | relevance | path

Searched refs:obj (Results 201 – 225 of 474) sorted by relevance

12345678910>>...19

/PHP-7.0/ext/spl/tests/
H A Dbug71838.phpt19 $obj = unserialize($serialized);
20 var_dump($obj->getA());
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.0/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 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 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.0/ext/standard/tests/serialize/
H A Dbug73825.phpt5 $obj = unserialize('O:8:"00000000":');
6 var_dump($obj);
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.0/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.0/ext/simplexml/
H A Dphp_simplexml_exports.h44 static inline php_sxe_object *php_sxe_fetch_object(zend_object *obj) /* {{{ */ { in php_sxe_fetch_object() argument
45 return (php_sxe_object *)((char*)(obj) - XtOffsetOf(php_sxe_object, zo)); in php_sxe_fetch_object()
/PHP-7.0/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.0/tests/classes/
H A Ddestructor_inheritance.phpt20 $obj = new derived;
22 unset($obj);
H A Ddestructor_visibility_003.phpt20 $obj = new Derived;
22 unset($obj); // Derived::__destruct is being called not Base::__destruct
/PHP-7.0/ext/dom/
H A Dphp_dom.c267 if (obj && obj->ptr != NULL) { in dom_object_get_node()
278 if (obj && obj->_private != NULL) { in php_dom_object_get_data()
319 if (!obj->prop_handler || !zend_hash_exists(obj->prop_handler, member_str)) { in dom_get_property_ptr_ptr()
337 if (obj->prop_handler != NULL) { in dom_read_property()
344 int ret = hnd->read_func(obj, rv); in dom_read_property()
367 if (obj->prop_handler != NULL) { in dom_write_property()
371 hnd->write_func(obj, value); in dom_write_property()
389 if (obj->prop_handler != NULL) { in dom_property_exists()
1197 if (!obj) { in php_dom_create_object()
1208 switch (obj->type) { in php_dom_create_object()
[all …]
/PHP-7.0/ext/intl/msgformat/
H A Dmsgformat_class.h40 static inline MessageFormatter_object *php_intl_messageformatter_fetch_object(zend_object *obj) { in php_intl_messageformatter_fetch_object() argument
41 return (MessageFormatter_object *)((char*)(obj) - XtOffsetOf(MessageFormatter_object, zo)); in php_intl_messageformatter_fetch_object()
/PHP-7.0/ext/soap/tests/
H A Dtypemap007.phpt32 $obj = new book;
33 $obj->a = (string)$sxe->a;
34 $obj->b = (string)$sxe->b;
35 return $obj;
H A Dtypemap003.phpt32 $obj = new book;
33 $obj->a = (string)$sxe->a;
34 $obj->b = (string)$sxe->b;
35 return $obj;
/PHP-7.0/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.0/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.0/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) );

Completed in 40 milliseconds

12345678910>>...19