Home
last modified time | relevance | path

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

12345678910>>...24

/PHP-8.3/ext/spl/tests/SplFileObject/
H A DSplFileObject_fflush_basic_001.phpt8 $obj = New SplFileObject(__DIR__.'/SplFileObject_testinput.csv');
9 var_dump($obj->fflush());
33 $obj = New SplFileObject("SPLtest://ftruncate_test");
34 var_dump($obj->fflush());
/PHP-8.3/Zend/tests/type_declarations/
H A Dtyped_properties_039.phpt17 foreach ($objs as $obj) {
18 $obj->foo = $v;
20 $obj = new B;
21 $obj->foo = $v;
H A Dtyped_properties_088.phpt13 function test($obj) {
14 $obj->prop = "42";
15 var_dump($obj);
H A Dtyped_properties_113.phpt15 $obj = new A;
16 foreach ($obj as $k => &$v) {
20 var_dump($obj);
H A Dtyped_properties_114.phpt15 $obj = new A;
16 foreach ($obj as $k => &$v) {
23 foreach ($obj as $k => &$v) {
31 var_dump($obj);
/PHP-8.3/tests/classes/
H A Darray_access_003.phpt40 $obj = new ObjectOne;
42 var_dump($obj[1]);
43 var_dump($obj[2]);
44 $obj[2]++;
45 var_dump($obj[2]);
H A Darray_access_004.phpt38 $obj = new ObjectOne;
40 var_dump($obj[1]);
41 var_dump($obj[2]);
42 $obj[2]++;
43 var_dump($obj[2]);
/PHP-8.3/tests/lang/operators/
H A Dcoalesce.phpt9 $obj = new StdClass;
10 $obj->boo = 7;
16 "qux" => $obj,
32 var_dump($obj->boo ?? 3);
33 var_dump($obj->bing ?? 3);
/PHP-8.3/Zend/tests/weakrefs/
H A Dgh10043-015.phpt12 $obj = new Value();
13 $map[$obj] = [$obj, $map];
/PHP-8.3/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_o.phpt75 /* creating new object $obj */
76 $obj = new contains_object_class();
77 $obj1 = & $obj; //object $obj1 references object $obj
78 $obj2 = & $obj;
88 $obj,
89 $obj->class_object1,
90 $obj->class_object2,
91 $obj->no_member_class_object,
102 $obj = $int_var; //$obj is lost, $obj1,$obj2,$obj3,$obj4 = 500
349 ["obj"]=>
[all …]
/PHP-8.3/ext/reflection/tests/
H A DReflectionExtension_getVersion_basic.phpt8 $obj = new ReflectionExtension('reflection');
9 $var = $obj->getVersion() ? $obj->getVersion() : null;
/PHP-8.3/ext/opcache/tests/jit/
H A Dassign_obj_on_null.phpt17 $obj = new Test;
18 $obj->x->y = 1;
21 $obj = new Test;
22 $obj->x->y += 1;
/PHP-8.3/ext/spl/tests/
H A Darray_004.phpt7 $obj = new ArrayObject($arr);
9 foreach($obj as $ak=>$av) {
10 foreach($obj as $bk=>$bv) {
H A Darray_006.phpt11 $obj = new ArrayIterator($arr);
13 foreach($obj as $ak=>$av) {
14 foreach($obj as $bk=>$bv) {
H A Dgh11178.phpt16 $obj = new A;
18 foreach ($obj as $k => &$v) {
22 var_dump($obj);
H A Darray_008.phpt7 $obj = new ArrayObject($arr);
9 foreach($obj as $ak=>&$av) {
10 foreach($obj as $bk=>&$bv) {
/PHP-8.3/Zend/tests/
H A Dgh13569.phpt9 $objs[] = $obj = new stdClass;
10 $wm[$obj] = $obj;
H A Dbug73989.phpt11 $obj = $this;
12 $this->thing = function() use($obj) {};
23 $obj = new Cycle();
H A Dobject_array_cast.phpt10 $obj = (object) [1, 2, 3];
11 var_dump((array) (object) $obj);
12 var_dump($obj);
H A Dassign_obj_ref_byval_function.phpt10 $obj = new stdClass;
11 $obj->prop =& notRef();
12 var_dump($obj);
/PHP-8.3/ext/json/tests/
H A Djson_encode_basic.phpt15 $obj = new stdClass();
16 $obj->MyInt = 99;
17 $obj->MyFloat = 123.45;
18 $obj->MyBool = true;
19 $obj->MyNull = null;
20 $obj->MyString = "Hello World";
71 $obj
/PHP-8.3/ext/xsl/
H A Dphp_xsl.h70 static inline xsl_object *php_xsl_fetch_object(zend_object *obj) { in php_xsl_fetch_object() argument
71 return (xsl_object *)((char*)(obj) - XtOffsetOf(xsl_object, std)); in php_xsl_fetch_object()
76 void php_xsl_set_object(zval *wrapper, void *obj);
78 void php_xsl_create_object(xsltStylesheetPtr obj, zval *wrapper_in, zval *return_value );
/PHP-8.3/ext/opcache/tests/opt/
H A Dsccp_038.phpt10 $obj = new stdClass;
11 $obj->$b = ~$b = $a = '##';
12 $obj->$a++;
/PHP-8.3/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h60 #define CDNO_FETCH_VERIFY(obj, zv) do { \ argument
65 obj = (php_com_dotnet_object*)Z_OBJ_P(zv); \
76 void php_com_object_enable_event_sink(php_com_dotnet_object *obj, bool enable);
94 HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member,
96 HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, zend_string *name,
98 zend_result php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid,
100 zend_result php_com_do_invoke(php_com_dotnet_object *obj, zend_string *name,
102 zend_result php_com_do_invoke_byref(php_com_dotnet_object *obj, zend_internal_function *f,
139 ITypeInfo *php_com_locate_typeinfo(zend_string *type_lib_name, php_com_dotnet_object *obj,
/PHP-8.3/tests/lang/
H A Dbug21669.phpt2 Bug #21669 ("$obj = new $this->var;" doesn't work)
14 $obj = new $this->name; /* Parse error */
15 return $obj;

Completed in 33 milliseconds

12345678910>>...24