Home
last modified time | relevance | path

Searched refs:c (Results 226 – 250 of 4053) sorted by path

12345678910>>...163

/PHP-7.4/Zend/tests/
H A Djump17.phpt17 c:
H A Dlist_003.phpt10 list($c) = 1.;
16 var_dump($a, $b, $c, $d, $e);
H A Dlist_005.phpt8 list($a, $b, $c) = $str;
10 var_dump($a, $b, $c);
16 list($a, $b, $c) = $int;
18 var_dump($a, $b, $c);
24 list($a, $b, $c) = $obj;
26 var_dump($a, $b, $c);
32 list($a, $b, $c) = $arr;
34 var_dump($a, $b, $c);
H A Dlist_keyed_evaluation_order.phpt9 $c = new Stringable("C");
15 // list($a => $b, $c => $d) = $e;
21 // 5. Evaluate $c
22 // 6. Evaluate $e[$c]
23 // 7. Assign $c from $e[$a]
25 list((string)$a => $store["B"], (string)$c => $store["D"]) = $e->getIndexable();
H A Dlist_keyed_evaluation_order_2.phpt53 list($b => $a, $a => $c) = ['bar' => 'foo', 1 => 'bar'];
55 var_dump($c);
H A Dlist_keyed_evaluation_order_nested.phpt9 $c = new Stringable("C");
28 // list($a => $b, $c => list($d, $e), $f => list($g => $h, $i => $j)) = $k;
34 // 5. Evaluate $c
35 // 6. Evaluate $k[$c]
36 // 7. Evaluate $k[$c][0]
37 // 8. Assign $d from $k[$c][0]
38 // 9. Evaluate $k[$c][1]
39 // 10. Assign $e from $k[$c][1]
51 (string)$c => list($store["D"], $store["E"]),
H A Dlist_self_assign.phpt7 list($a, $b, $c) = $a;
8 var_dump($a, $b, $c);
11 list($a, $b, $c) = $b;
12 var_dump($a, $b, $c);
14 $c = [1, 2, 3];
15 list($a, $b, $c) = $c;
16 var_dump($a, $b, $c);
20 var_dump($a, $b, $c);
24 var_dump($a, $b, $c);
30 $c = [1, [2, 3]];
[all …]
H A Dmod_001.phpt10 $c = $a % $b;
11 var_dump($c);
H A Dmul_001.phpt15 $c = $a * $b;
16 var_dump($c);
H A Dnested_method_and_function.phpt26 $c = Foo::bar();
28 $c();
H A Dnowdoc.inc6 $c = array( 'c' => 3, );
H A Dnowdoc_005.phpt9 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
14 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
22 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
23 This is nowdoc test #s $a, $b, $c['c'], and $d->d.
H A Dnowdoc_006.phpt9 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
14 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
22 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
23 This is nowdoc test #s {$a}, {$b}, {$c['c']}, and {$d->d}.
H A Dnowdoc_007.phpt9 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
14 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
22 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
23 This is nowdoc test #s $a, {$b}, {$c['c']}, and {$d->d}.
H A Dns_022.phpt5 namespace a\b\c;
7 use a\b\c as test;
18 a\b\c\foo
H A Dns_064.phpt28 $x->b->c = 1;
36 string(1) "c"
H A Dobject_handlers.phpt64 $c = "tmp";
81 $c = 0;
88 $c = "cv_get";
89 $z = $x->{$c};
92 $x->{$c} = 1;
95 $x->{$c}();
98 $z = $x[$c];
101 $x[$c] = 1;
111 $c = 5;
114 $c = 6;
[all …]
H A Dobjects_021.phpt33 ->c = 1;
H A Doffset_string.phpt41 string(1) "c"
H A Doverloaded_prop_assign_op_refs.phpt9 protected $c = 0;
25 var_dump(++$test->c);
37 get(c)
38 set(c, 1)
45 ["c":protected]=>
/PHP-7.4/Zend/tests/list/
H A Dlist_reference_001.phpt20 [&$a, [&$b], &$c] = $arr;
21 var_dump($a, $b, $c);
25 ["one" => &$a, "two" => [&$b], "three" => &$c] = $arr;
26 var_dump($a, $b, $c);
/PHP-7.4/Zend/tests/multibyte/
H A Dmultibyte_encoding_001.phpt23 95:5c
H A Dmultibyte_encoding_006.phpt16 ���e���c���h���o��� ���"���h���e���l���l���o��� ���w���o���r���l���d���"���;���
/PHP-7.4/Zend/tests/return_types/
H A D025.phpt6 $c = function(): self { return $this; };
8 var_dump($c->call(new Bar));
H A D027.phpt9 $c = function(parent $x): parent { return $x; };
10 var_dump($c->bindTo(null, 'B')(new A));

Completed in 30 milliseconds

12345678910>>...163