Home
last modified time | relevance | path

Searched refs:c (Results 3976 – 4000 of 4053) sorted by path

1...<<151152153154155156157158159160>>...163

/PHP-7.4/tests/classes/
H A Diterators_003.phpt35 class c implements IteratorAggregate {
45 $t = new c();
72 c::getIterator
81 c::getIterator
98 c::getIterator
H A Dmethod_call_variation_001.phpt13 $c = new C;
14 $c->functions[0] = 'foo';
15 $c->functions[1][2][3][4] = 'foo';
17 $c->$name[0](1, 2);
18 $c->$name[1][2][3][4](3, 4);
20 $c->functions[0](5, 6);
21 $c->functions[1][2][3][4](7, 8);
H A Dproperty_recreate_private.phpt41 $c = new C;
42 $c->unsetPrivate();
43 $c->setPrivate();
44 var_dump($c);
47 $c = new C;
48 $c->unsetPrivate();
49 $c->p = 'this will fail';
50 var_dump($c);
H A Dstatic_properties_003.phpt10 $c = new C;
13 var_dump(isset($c->x));
14 unset($c->x);
15 echo $c->x;
16 $c->x = 1;
18 $c->x =& $ref;
19 var_dump($c->x, C::$x);
22 var_dump(isset($c->y));
23 //unset($c->y); // Fatal error, tested in static_properties_003_error1.phpt
24 //echo $c->y; // Fatal error, tested in static_properties_003_error2.phpt
[all …]
H A Dstatic_properties_003_error1.phpt8 $c = new C;
11 unset($c->y);
H A Dstatic_properties_003_error2.phpt8 $c = new C;
11 echo $c->y;
H A Dstatic_properties_003_error3.phpt8 $c = new C;
11 $c->y = 1;
H A Dstatic_properties_003_error4.phpt8 $c = new C;
12 $c->y =& $ref;
H A Dvisibility_005.phpt10 private $c=3;
47 c=>3
55 c=>3
/PHP-7.4/tests/func/
H A D003.phpt17 function c($i,$j)
31 c(7,14);
/PHP-7.4/tests/lang/
H A D007.phpt12 $c = 1;
16 $c++;
17 echo "$a $c ";
21 echo "$a $b $c ";
23 echo "$a $b $c ";
H A Dbug22592.phpt28 $c = $result[0] = $result[2] = $result[4] = $i;
34 var_dump($a, $b, $c, $d, $e);
H A Dbug24396.phpt6 $arr = array('a' => 1, 'b' => 2, 'c' => 3);
19 (c => 3)
H A Dbug27439.phpt9 public $c = 3;
H A Dengine_assignExecutionOrder_002.phpt13 $c[$c=1] = 1;
H A Dengine_assignExecutionOrder_003.phpt22 $c = ${$a=$b};
24 $c();
H A Dengine_assignExecutionOrder_005.phpt38 $c = array(array(2));
40 $a[i1()][i2()] = $b[i3()][i4()] = $c[i5()][i6()];
44 var_dump($c);
H A Dengine_assignExecutionOrder_006.phpt38 $c = array(array(2));
40 $a[i1()][i2()] = ($b[i3()][i4()] = $c[i5()][i6()]);
43 var_dump($c);
45 $a[i1()][i2()] = $b[i3()][i4()] = -$c[i5()][i6()];
48 var_dump($c);
50 $a[i1()][i2()] = -($b[i3()][i4()] = +($c[i5()][i6()]));
53 var_dump($c);
H A Dexecution_order.phpt17 echo $c;
24 echo $c;
31 echo $c;
38 echo $c;
43 echo $c;
50 echo $c;
156 echo c::$stat + (c::$stat=200);
160 echo (c::$stat=300) + c::$stat;
163 $c = new c();
166 echo $c->val + ($c->val=200);
[all …]
H A DforeachLoop.001.phpt6 $a = array("a","b","c");
30 $a=array("a","b","c");
33 $a=array("a","b","c");
41 string(1) "c"
47 string(1) "c"
49 string(1) "c"
H A DforeachLoop.004.phpt6 $a=array("a", "b", "c");
15 $a=array("a", "b", "c");
34 string(1) "c"
42 string(1) "c"
46 string(1) "c"
62 string(1) "c"
70 string(1) "c"
75 string(1) "c"
H A DforeachLoop.006.phpt5 $a = array("a","b","c");
H A DforeachLoop.016.phpt56 echo "\n" . '$a->b->c' . "\n";
57 $b = $a->b->c = array('original');
80 echo "\n" . '$a->b[0]->c' . "\n";
81 $b = $a->b[0]->c = array('original');
82 foreach($a->b[0]->c as $k=>&$v) {
158 $a->b->c
184 $a->b[0]->c
H A DforeachLoopIteratorAggregate.004.phpt44 class c implements IteratorAggregate {
56 $t = new c();
70 c::getIterator
76 c::getIterator
86 c::getIterator
96 c::getIterator
H A DforeachLoopObjects.001.phpt9 public $c = "Original c";
41 string(10) "Original c"
46 string(1) "c"
47 string(10) "Original c"
50 string(1) "c"
51 string(10) "Original c"
57 string(10) "Original c"
62 string(1) "c"
63 string(10) "Original c"
66 string(1) "c"
[all …]

Completed in 30 milliseconds

1...<<151152153154155156157158159160>>...163