Home
last modified time | relevance | path

Searched refs:c (Results 51 – 75 of 4053) sorted by path

12345678910>>...163

/PHP-7.4/Zend/tests/
H A Dbug30394.phpt20 $c = new Container();
21 $c->a = 1;
22 $c->a += 1;
23 print $c->a; // --> 2
26 $c->a += max( 0, 1 );
27 print $c->a; // --> 4 (!)
H A Dbug30791.phpt16 $c = unserialize(serialize($b));
17 var_dump($c);
H A Dbug32296.phpt18 $c = get_class($this);
21 print($c."\n".'a:');
H A Dbug32596.phpt11 $c=get_class($this); unset($c);
14 $c=get_class($this); //memory leak only
H A Dbug32660.phpt23 $c =& $a->whatever;
24 $c = "long";
H A Dbug32799.phpt6 public $c=1;
11 $GLOBALS['p']->c++; // no warning
12 print $GLOBALS['p']->c."\n"; // segfault
H A Dbug33171.phpt7 private $c = "A's c";
12 private $c = "B's c";
27 c => B's c
H A Dbug33257.phpt8 protected static $arr = array("a", "b", "c");
24 [2] => c
H A Dbug34045.phpt15 $c = __CLASS__;
16 self::$instance = new $c;
H A Dbug34310.phpt2 Bug #34310 (foreach($arr as $c->d => $x) crashes)
11 $c = new C();
13 $arr = array (1 => 'a', 2 => 'b', 3 => 'c');
16 foreach($arr as $x => $c->d)
18 echo "{$x} => {$c->d}\n";
22 foreach($arr as $c->d => $x)
24 echo "{$c->d} => {$x}\n";
31 3 => c
34 3 => c
H A Dbug34786.phpt5 function foo($a,$b,$c) {
H A Dbug37715.phpt25 // Alternatively $c = $a; and foreachloop removal will cause identical results.
H A Dbug38772.phpt36 $c = new C();
H A Dbug39449.phpt16 $a->arr = array('a','b','c');
34 2 => c
38 2 => c
H A Dbug40509.phpt9 $c = $arr["v"];
10 foreach ($c as $v) {}
H A Dbug40899.phpt5 list(list($a,$b),$c)=array(array('a','b'),'c');
6 echo "$a$b$c\n";
H A Dbug42798.phpt10 function foo($c = ok::constant) {
H A Dbug42817.phpt6 array_push($a->b, $c);
H A Dbug43200.phpt14 abstract class c {
18 class x extends c implements a, b {
26 Class [ <user> class x extends c implements a, b ] {
46 Method [ <user, inherits c, prototype a> public method bar ] {
H A Dbug43201.phpt14 $c = new Foo();
16 $c->arr[0]["k"] = 1;
17 $c->arr[0]["k2"] = $ref;
20 $c->arr[$cnt]["k2"] = $ref;
H A Dbug43426.phpt6 call_user_func("foo2", $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
8 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
10 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
12 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
14 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
16 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
18 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
20 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
22 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
24 $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c, $c,
[all …]
H A Dbug46196.phpt9 * Source code: Zend/zend_builtin_functions.c
H A Dbug47054.phpt22 $c = new C();
23 $c->s();
H A Dbug47981.phpt14 class c extends b {function f() {}}
17 string(60) "Declaration of c::f() should be compatible with b::f($a = 1)"
H A Dbug48215_2.phpt10 class c extends b {
15 $c = new c();
21 #0 %s(%d): c->__construct()

Completed in 25 milliseconds

12345678910>>...163