Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 2264) sorted by path

12345678910>>...91

/PHP-7.4/
H A DNEWS2601 . Added gmp_lcm(a, b). (Nikita)
2603 . Added gmp_kronecker(a, b). (Nikita)
H A DREADME.REDIST.BINS364 software and associated documentation files (the "Software"), and (b)
H A DUPGRADING397 $a ? $b : $c ? $d : $e
399 ($a ? $b : $c) ? $d : $e
401 $a ? $b : ($c ? $d : $e)
H A DUPGRADING.INTERNALS5 b. zend_lookup_class_ex() and zend_fetch_class_by_name()
32 b. Unix build system changes
37 b. ext/hash
47 b. zend_lookup_class_ex() and zend_fetch_class_by_name() prototypes were
261 b. Unix build system changes
325 b. ext/hash
/PHP-7.4/Zend/
H A DZend.m417 volatile double b = 1000000.0;
22 result = a / b;
39 volatile double b = 1000000.0;
43 result = a / b;
60 volatile double b = 1000000.0;
64 result = a / b;
81 volatile double b = 1000000.0;
86 result = a / b;
103 volatile double b = 1000000.0;
109 result = a / b;
H A Dbench.php86 $b = " .:,;!/>)|&IH%*#";
92 echo $b[$k%16];
307 for ($b=0; $b<$n; $b++)
H A Dmicro_bench.php26 public $b = 0; variable in Foo
64 $x = $this->b;
70 $this->b = 0;
76 $this->b += 2;
82 ++$this->b;
88 --$this->b;
94 $this->b++;
100 $this->b--;
106 $x = isset($this->b);
112 $x = empty($this->b);
/PHP-7.4/Zend/tests/
H A D001.phpt14 function test3($a, $b) {
H A D002.phpt17 function test3($a, $b) {
H A D003.phpt14 function test3($a, $b) {
H A D007.phpt13 $var = array("a"=>1,"b"=>2,"c"=>3);
H A D021.phpt11 $b = 0;
15 var_dump($a ?: $b);
H A D023.phpt7 $b = 'a';
8 print $$b('test');
30 $b = 'a';
31 var_dump($$b()->$$b()->$b());
35 $b = 'a';
36 $c = 'b';
H A D024.phpt9 var_dump($a + $b);
11 var_dump(++$b);
12 var_dump($a->$b);
13 var_dump($a->$b);
14 var_dump($a->$b->{$c[1]});
35 Notice: Undefined variable: b in %s on line %d
41 Notice: Undefined variable: b in %s on line %d
H A D025.phpt13 $b = 'a';
19 foo::$$b();
23 $class::$$b();
H A D027.phpt6 $a = 'b';
7 $b = 'c';
12 $a = 'b';
13 $b = 'c';
H A D029.phpt11 $arr[0]->b = new $arr[0];
33 ["b"]=>
44 ["b"]=>
H A Daccess_modifiers_010.phpt18 abstract class b extends a {
21 class c extends b {
H A Dadd_001.phpt7 $b = array("str", "here");
9 $c = $a + $b;
13 $b = array(1,2,4);
15 $c = $a + $b;
19 $b = array(1,2,"a"=>"bbbbbb");
21 $c = $a + $b;
24 $a += $b;
H A Danonymous_func_001.phpt10 $b = "\0lambda_". ($i + 1);
11 var_dump($b());
H A Darray_append_COW.phpt6 $b=1;
7 $c=&$b;
8 $a[]=$b;
9 $b=2;
/PHP-7.4/Zend/tests/arg_unpack/
H A Dby_ref.phpt37 $a = $b = $c = $d = 0;
43 test2($a, $b, ...$array);
44 var_dump($a, $b, $array);
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);
H A Dtraversable_with_by_ref_parameters.phpt16 test(1, 2, 3, $b, ...gen([4, 5, 6]));
17 var_dump($b);
/PHP-7.4/Zend/tests/array_unpack/
H A Dbasic.phpt22 var_dump([...new ArrayIterator(['a', 'b', 'c'])]);
66 string(1) "b"
H A Dref1.phpt7 $b = [&$a]; //array (0 => (refcount=2, is_ref=1)=1)
11 var_dump([...$b]); //array (0 => (refcount=0, is_ref=0)=1)

Completed in 43 milliseconds

12345678910>>...91