Home
last modified time | relevance | path

Searched refs:z (Results 1 – 25 of 336) sorted by path

12345678910>>...14

/PHP-7.4/
H A D.travis.yml96 - if [ -z "$ARM64" ]; then export JOBS=$(nproc); else export JOBS=16; fi
H A DCONTRIBUTING.md43 Pull requests should *never* be submitted against `PHP-x.y.z` branches, as these
/PHP-7.4/TSRM/
H A Dthreads.m434 if test -z "$host_alias" && test -n "$host"; then
37 if test -z "$host_alias"; then
H A Dtsrm.m49 if test -z "$PTH_PREFIX"; then
/PHP-7.4/Zend/
H A Dbench.php89 for ($x=0; $c = $x*0.04 - 2, $z=0, $Z=0, $x++ < 75;){
90 for ($r=$c, $i=$C, $k=0; $t = $z*$z - $Z*$Z + $r, $Z = 2*$z*$Z + $i, $z=$t, $k<5000; $k++)
91 if ($z*$z + $Z*$Z > 500000) break;
H A Dzend_API.c566 zval *z = Z_OBJ_HANDLER_P(arg, get)(arg, &rv); in zend_parse_arg_str_weak() local
568 if (Z_TYPE_P(z) != IS_OBJECT) { in zend_parse_arg_str_weak()
570 if (Z_TYPE_P(z) == IS_STRING) { in zend_parse_arg_str_weak()
571 ZVAL_COPY_VALUE(arg, z); in zend_parse_arg_str_weak()
573 ZVAL_STR(arg, zval_get_string_func(z)); in zend_parse_arg_str_weak()
574 zval_ptr_dtor(z); in zend_parse_arg_str_weak()
579 zval_ptr_dtor(z); in zend_parse_arg_str_weak()
/PHP-7.4/Zend/tests/
H A Darray_unpack_string_keys.phpt6 $z = "bar";
7 $x = [...$y, "foo" => $z];
H A Dbug28444.phpt48 var_dump($y->z = new ObjectOne(4));
49 var_dump($y->z->x);
50 $t = $y->z;
52 var_dump($y->z->x = 6);
67 Overloaded::__set(z,Object)
72 Overloaded::__get(z)
74 Overloaded::__get(z)
76 Overloaded::__get(z)
H A Dbug30140.phpt16 A::$test3 = "z";
27 string(1) "z"
30 string(1) "z"
H A Dbug30162.phpt23 $this->z = new FIIFO;
H A Dbug48693.phpt17 $z = create_function('', '{');
H A Dbug68412.phpt13 global $z;
14 $z->bar();
17 $z = new C;
19 global $z;
20 $z->foo();
H A Dbug71414.phpt6 public function z(): string;
10 public function z(): string {
15 public function z() {
H A Dbug71841.phpt7 $z = unserialize('O:1:"A":0:{}');
8 var_dump($z->e.=0);
9 var_dump(++$z->x);
10 var_dump($z->y++);
H A Dbug72543.phpt12 $copy['b']['z']['z'] = $copy['b'];
H A Dclosure_029.phpt8 var_dump(@function(&$x) use ($y, $z) { } instanceof closure);
H A Dclosure_058.phpt13 $z = "call_user_func";
21 $z(array($a,"__invoke"));
32 $z(array($b,"__invoke"));
H A Dclosure_call.phpt40 $beta = function ($z) {
41 return $this->x * $z;
H A Dforeach_017.phpt41 $replacement = ['x', 'y', 'z'];
105 z
H A Dindirect_method_call_004.phpt8 public $z;
11 $this->z = new stdclass;
14 return $this->z;
18 var_dump(clone (new bar)->z);
H A Dlsb_018.phpt48 $z = Baz::getInstance();
55 $z->identify();
H A Dobject_handlers.phpt40 $z = $x->const_get;
48 $z = $x["const_dim_get"];
58 $z = $x->{1};
65 $z = $x->{$c."_get"};
71 $z = $x[$c."_dim_get"];
82 $z = $x->{$c+3};
89 $z = $x->{$c};
98 $z = $x[$c];
112 $z = $x->{$c};
119 $z = $x->{f("var_get")};
[all …]
/PHP-7.4/Zend/tests/assert/
H A Dexpect_015.phpt16 list($a, $b, $c) = [1, 2=>'x', 'z'=>'c'];
58 $x = C::$z;
59 $x = ${$a . "_1"}::$z;
60 $x = C::${$z . "_1"};
158 [$a, $b, $c] = [1, 2 => 'x', 'z' => 'c'];
198 $x = C::$z;
199 $x = ${$a . '_1'}::$z;
200 $x = C::${$z . '_1'};
/PHP-7.4/Zend/tests/traits/
H A Dbug55372.phpt9 $letters1 = range('a', 'z', 1);
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_071.phpt16 $z = 42;
17 $y = $z;
18 var_dump($y, $z, $test);

Completed in 42 milliseconds

12345678910>>...14