Home
last modified time | relevance | path

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

12345678910>>...89

/PHP-7.3/
H A DNEWS1517 . Added gmp_lcm(a, b). (Nikita)
1519 . Added gmp_kronecker(a, b). (Nikita)
H A DREADME.GIT-RULES17 b. Keep the changes consistently well documented and easily trackable.
H A DREADME.MAILINGLIST_RULES18 b. Help in making sure we all use our time more efficiently.
H A DREADME.PARAMETER_PARSING_API61 b - boolean (zend_bool)
90 For 'b', 'l' and 'd', an extra argument of type zend_bool* must be
H A DREADME.REDIST.BINS369 software and associated documentation files (the "Software"), and (b)
H A DREADME.RELEASE_PROCESS126 b. ``$PHP_x_RC_DATE`` = "06 September 2007"
136 b. Add the content for the news entry. Be sure to include the text:
219 highest branch, otherwise you have to do this manually, see point 1.b
221 b. In case multiple PHP minor versions are in active development you have
228 b. ``$PHP_X_DATE`` to the release date
253 b. check for &, < and > and escape them if necessary
277 b. Add the content for the news entry
303 b. ``$PHP_X_VERSION`` to the correct version
320 b. Add the content for the news entry
H A DUPGRADING188 [&$a, [$b, &$c]] = $d. The same is also supported for list().
429 . Added gmp_lcm(a, b) for calculating the least common multiple.
431 . Added gmp_kronecker(a, b) to compute the Kronecker symbol.
H A DUPGRADING.INTERNALS5 b. Run-time constant operand addressing
35 b. Windows build system changes
47 b. In 64-bit builds PHP-7.2 and below used relative run-time constant operand
193 b. Windows build system changes
/PHP-7.3/Zend/
H A Dacinclude.m4126 volatile double b = 1000000.0;
131 result = a / b;
148 volatile double b = 1000000.0;
152 result = a / b;
169 volatile double b = 1000000.0;
173 result = a / b;
190 volatile double b = 1000000.0;
195 result = a / b;
212 volatile double b = 1000000.0;
218 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.3/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]});
37 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());
/PHP-7.3/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);

Completed in 64 milliseconds

12345678910>>...89