Home
last modified time | relevance | path

Searched refs:c (Results 26 – 50 of 4053) sorted by path

12345678910>>...163

/PHP-7.4/Zend/tests/
H A D027.phpt7 $b = 'c';
8 $c = 'strtoupper';
13 $b = 'c';
14 $c = 'strtoupper';
H A D029.phpt14 $arr[0]->c = $arr[0]->a;
47 ["c"]=>
H A Daccess_modifiers_010.phpt21 class c extends b {
27 new c;
34 #1 %s(%d): c->__construct()
H A Daccess_modifiers_012.phpt13 $c = new C;
14 call_user_func(array($c, 'none'));
15 call_user_func(array($c, 'prot'));
16 call_user_func(array($c, 'priv'));
H A Dadd_001.phpt9 $c = $a + $b;
10 var_dump($c);
15 $c = $a + $b;
16 var_dump($c);
21 $c = $a + $b;
22 var_dump($c);
25 var_dump($c);
28 var_dump($c);
H A Dadd_002.phpt17 $c = $a + $o;
18 var_dump($c);
H A Dadd_003.phpt17 $c = $o + $a;
18 var_dump($c);
H A Dadd_004.phpt14 $c = $a + 5;
15 var_dump($c);
H A Dadd_005.phpt11 $c = $i + $d;
12 var_dump($c);
14 $c = $d + $i;
15 var_dump($c);
H A Dadd_006.phpt14 $c = $i + $s1;
15 var_dump($c);
17 $c = $i + $s2;
18 var_dump($c);
20 $c = $i + $s3;
21 var_dump($c);
23 $c = $i + $s4;
24 var_dump($c);
27 var_dump($c);
30 var_dump($c);
[all …]
H A Dadd_007.phpt16 $c = $a + $s1;
17 var_dump($c);
H A Darray_append_COW.phpt7 $c=&$b;
H A Darray_unshift_COW.phpt7 $c=&$b;
H A Dassign_coalesce_001.phpt27 $c = $foo;
28 $c ??= $bar;
29 var_dump($c);
32 var_dump($c);
H A Dbug21478.phpt2 Bug #21478 (Zend/zend_alloc.c :: shutdown_memory_manager produces segfault)
H A Dbug21888.phpt26 $c = new child();
27 $c->callMom();
28 $c->viewMom();
H A Dbug23104.phpt5 function foo($bar = array("a", "b", "c"))
H A Dbug26698.phpt18 function three($a, $b, $c)
H A Dbug28072.phpt6 define("THIRD_KEY", "c");
25 "c" => "333",
39 [c] => 333
45 [c] => 444
H A Dbug29505.phpt8 public $three = array(1, "b"=>"c", 3=>array());
25 string(1) "c"
/PHP-7.4/Zend/tests/anon/
H A D010.phpt18 $c = new C;
19 var_dump($c->m1());
/PHP-7.4/Zend/tests/arg_unpack/
H A Dby_ref.phpt37 $a = $b = $c = $d = 0;
46 test2($a, $b, $c, ...$array);
47 var_dump($a, $b, $c, $array);
49 test2($a, $b, $c, $d, ...$array);
50 var_dump($a, $b, $c, $d, $array);
/PHP-7.4/Zend/tests/array_unpack/
H A Dbasic.phpt22 var_dump([...new ArrayIterator(['a', 'b', 'c'])]);
68 string(1) "c"
/PHP-7.4/Zend/tests/arrow_functions/
H A D002.phpt8 var_dump((fn() => $b + $c)());
12 Notice: Undefined variable: c in %s on line %d
/PHP-7.4/Zend/tests/assert/
H A Dexpect_015.phpt10 static $c, $d = 0;
12 $x = isset($a) && !empty($b) || eval($c);
13 $x = $a ? $b : $c;
14 $x = $a ?: $c;
16 list($a, $b, $c) = [1, 2=>'x', 'z'=>'c'];
29 protected $c;
151 static $c;
155 $x = $a ? $b : $c;
156 $x = $a ?: $c;
158 [$a, $b, $c] = [1, 2 => 'x', 'z' => 'c'];
[all …]

Completed in 36 milliseconds

12345678910>>...163