Home
last modified time | relevance | path

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

12345678910>>...89

/PHP-7.2/
H A DINSTALL397 $PHP -b $FCGI_BIND_ADDRESS &
H A DNEWS2516 . Fixed bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes)
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_API54 b - boolean (zend_bool)
83 For 'b', 'l' and 'd', an extra argument of type zend_bool* must be
H A DREADME.REDIST.BINS268 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:
217 highest branch, otherwise you have to do this manually, see point 1.b
219 b. In case multiple PHP minor versions are in active development you have
226 b. ``$PHP_X_DATE`` to the release date
251 b. check for &, < and > and escape them if necessary
275 b. Add the content for the news entry
301 b. ``$PHP_X_VERSION`` to the correct version
318 b. Add the content for the news entry
H A DUPGRADING.INTERNALS5 b. php_win32_get_random_bytes()
15 b. Windows build system changes
30 b. php_win32_get_random_bytes()
57 b. Windows build system changes
/PHP-7.2/Zend/
H A Dacinclude.m4128 volatile double b = 1000000.0;
133 result = a / b;
150 volatile double b = 1000000.0;
154 result = a / b;
171 volatile double b = 1000000.0;
175 result = a / b;
192 volatile double b = 1000000.0;
197 result = a / b;
214 volatile double b = 1000000.0;
220 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.2/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.2/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 48 milliseconds

12345678910>>...89