Home
last modified time | relevance | path

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

12345678910>>...21

/PHP-7.4/ext/reflection/tests/
H A DReflectionExtension_constructor_error.phpt9 $obj = new ReflectionExtension();
15 $obj = new ReflectionExtension('foo', 'bar');
21 $obj = new ReflectionExtension([]);
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;
/PHP-7.4/ext/dom/
H A Dnode.c204 nodep = dom_object_get_node(obj); in dom_node_node_name_read()
286 xmlNode *nodep = dom_object_get_node(obj); in dom_node_node_value_read()
325 xmlNode *nodep = dom_object_get_node(obj); in dom_node_node_value_write()
372 nodep = dom_object_get_node(obj); in dom_node_node_type_read()
400 nodep = dom_object_get_node(obj); in dom_node_parent_node_read()
452 nodep = dom_object_get_node(obj); in dom_node_first_child_read()
483 nodep = dom_object_get_node(obj); in dom_node_last_child_read()
499 php_dom_create_object(last, retval, obj); in dom_node_last_child_read()
514 nodep = dom_object_get_node(obj); in dom_node_previous_sibling_read()
542 nodep = dom_object_get_node(obj); in dom_node_next_sibling_read()
[all …]
/PHP-7.4/tests/classes/
H A Diterators_002.phpt7 private $obj;
10 function __construct($obj) {
12 $this->obj = $obj;
19 $more = $this->num < $this->obj->max;
H A Diterators_003.phpt7 private $obj;
10 function __construct($obj) {
12 $this->obj = $obj;
18 $more = $this->num < $this->obj->max;
/PHP-7.4/tests/lang/
H A DforeachLoopIteratorAggregate.004.phpt7 private $obj;
10 function __construct($obj) {
12 $this->obj = $obj;
19 $more = $this->num < $this->obj->max;
/PHP-7.4/Zend/tests/
H A Dbug39017.phpt2 Bug #39017 (foreach(($obj = new myClass) as $v); echo $obj; segfaults)
H A Dclass_name_of_var.phpt6 $obj = new stdClass;
7 var_dump($obj::class);
H A Dforeach_018.phpt6 $obj = (object)[
11 foreach ($obj as $k => $v) {
H A Dbug39990.phpt11 $obj=new Foo();
12 foreach($obj->arr as $value)
H A Dbug70288.phpt11 function test(&$obj) {
12 var_dump($obj);
/PHP-7.4/ext/spl/tests/
H A Dobserver_004.phpt70 ["obj"]=>
80 ["obj"]=>
102 ["obj"]=>
112 ["obj"]=>
H A Dunserialize.phpt13 $obj = unserialize($str);
14 var_dump($obj);
16 $out = serialize($obj);
H A DSplFixedArray_serialize.phpt8 $obj = new stdClass;
9 $obj->prop = 'value';
13 $array[3] = $obj;
/PHP-7.4/ext/date/
H A Dphp_date.h138 static inline php_date_obj *php_date_obj_from_obj(zend_object *obj) { in php_date_obj_from_obj() argument
139 return (php_date_obj*)((char*)(obj) - XtOffsetOf(php_date_obj, std)); in php_date_obj_from_obj()
155 static inline php_timezone_obj *php_timezone_obj_from_obj(zend_object *obj) { in php_timezone_obj_from_obj() argument
156 return (php_timezone_obj*)((char*)(obj) - XtOffsetOf(php_timezone_obj, std)); in php_timezone_obj_from_obj()
167 static inline php_interval_obj *php_interval_obj_from_obj(zend_object *obj) { in php_interval_obj_from_obj() argument
168 return (php_interval_obj*)((char*)(obj) - XtOffsetOf(php_interval_obj, std)); in php_interval_obj_from_obj()
185 static inline php_period_obj *php_period_obj_from_obj(zend_object *obj) { in php_period_obj_from_obj() argument
186 return (php_period_obj*)((char*)(obj) - XtOffsetOf(php_period_obj, std)); in php_period_obj_from_obj()
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug70172.phpt5 class obj implements Serializable {
23 $exploit = 'a:2:{i:0;i:1;i:1;C:3:"obj":'.strlen($inner).':{'.$inner.'}}';
48 object(obj)#%d (1) {
H A Dbug72731.phpt6 class obj {
13 $poc = 'O:8:"stdClass":1:{i:0;O:3:"obj":1:{s:4:"ryat";R:1;}}';
/PHP-7.4/ext/xsl/
H A Dxsltprocessor.c186 xmlXPathObjectPtr obj; in xsl_ext_function_php() local
219 obj = valuePop(ctxt); in xsl_ext_function_php()
220 if (obj) { in xsl_ext_function_php()
233 obj = valuePop(ctxt); in xsl_ext_function_php()
234 if (obj == NULL) { in xsl_ext_function_php()
238 switch (obj->type) { in xsl_ext_function_php()
256 if (obj->nodesetval && obj->nodesetval->nodeNr > 0) { in xsl_ext_function_php()
307 obj = valuePop(ctxt); in xsl_ext_function_php()
308 if (obj == NULL || obj->stringval == NULL) { in xsl_ext_function_php()
321 xmlXPathFreeObject(obj); in xsl_ext_function_php()
[all …]
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_053.phpt8 $obj = new A;
9 var_dump($obj);
H A Dtyped_properties_054.phpt8 $obj = new A;
9 var_dump($obj);
/PHP-7.4/Zend/tests/varSyntax/
H A DparenthesesDeref.phpt14 $obj = (object) ['a' => 0, 'b' => ['var_dump', 1]];
15 (clone $obj)->b[0](1);
/PHP-7.4/ext/standard/tests/array/
H A Dsizeof_object1.phpt27 $obj = new sizeof_class();
30 var_dump( sizeof($obj) );
32 var_dump( sizeof($obj, COUNT_NORMAL) );
34 var_dump( sizeof($obj, COUNT_RECURSIVE) );
/PHP-7.4/ext/json/tests/
H A Dpass002.phpt11 $obj = json_decode($test);
12 var_dump($obj);
18 $obj_enc = json_encode($obj);
25 $obj = json_decode($obj_enc);
26 var_dump($obj);
/PHP-7.4/ext/xmlwriter/
H A Dphp_xmlwriter.h50 static inline ze_xmlwriter_object *php_xmlwriter_fetch_object(zend_object *obj) { in php_xmlwriter_fetch_object() argument
51 return (ze_xmlwriter_object *)((char*)(obj) - XtOffsetOf(ze_xmlwriter_object, std)); in php_xmlwriter_fetch_object()

Completed in 61 milliseconds

12345678910>>...21