Home
last modified time | relevance | path

Searched refs:b (Results 151 – 175 of 2225) sorted by relevance

12345678910>>...89

/PHP-7.3/ext/standard/tests/strings/
H A Dhtmlentities23.phpt43 string(16) "262378464646443b"
45 string(16) "262378464646443b"
48 string(16) "262378464646443b"
50 string(16) "262378464646443b"
68 string(16) "262378464646443b"
70 string(16) "262378464646443b"
78 string(16) "262378464646443b"
80 string(16) "262378464646443b"
83 string(16) "262378464646443b"
85 string(16) "262378464646443b"
[all …]
H A Dstrspn.phpt6 $b = "1234";
8 var_dump($b);
9 var_dump(strspn($a,$b));
10 var_dump(strspn($a,$b,2));
11 var_dump(strspn($a,$b,2,3));
H A Dstrcspn.phpt6 $b = "1234";
8 var_dump($b);
9 var_dump(strcspn($a,$b));
10 var_dump(strcspn($a,$b,9));
11 var_dump(strcspn($a,$b,9,6));
/PHP-7.3/Zend/tests/generators/
H A Dbug76427.phpt10 $b = new stdclass();
11 $a->b = $b;
12 $b->a = $a;
16 unset($b);
/PHP-7.3/tests/lang/
H A DpassByReference_008.phpt24 $b = 'original.b';
25 refVal($b, $b);
26 var_dump($b);
36 string(10) "original.b"
37 string(10) "original.b"
H A DforeachLoopObjects.002.phpt8 public $b = "Original b";
63 public $b = "Overridden b";
183 ["b"]=>
208 ["b"]=>
229 ["b"]=>
258 ["b"]=>
283 ["b"]=>
304 ["b"]=>
333 ["b"]=>
350 ["b"]=>
[all …]
H A D007.phpt11 global $b;
13 $b = 5;
14 echo "$a $b ";
21 echo "$a $b $c ";
23 echo "$a $b $c ";
H A Dfunc_num_args.004.phpt28 $b = 'original.b';
29 refVal($b, $b);
30 var_dump($b);
42 string(10) "original.b"
43 string(10) "original.b"
/PHP-7.3/appveyor/
H A Dbuild_task.bat4 if %errorlevel% neq 0 exit /b 3
6 if %errorlevel% neq 0 exit /b 3
8 if %errorlevel% neq 0 exit /b 3
10 if %errorlevel% neq 0 exit /b 3
12 if %errorlevel% neq 0 exit /b 3
14 if %errorlevel% neq 0 exit /b 3
16 if %errorlevel% neq 0 exit /b 3
18 if %errorlevel% neq 0 exit /b 3
20 if %errorlevel% neq 0 exit /b 3
22 if %errorlevel% neq 0 exit /b 3
[all …]
/PHP-7.3/Zend/tests/
H A Dobject-null.phpt10 $b = new Bla;
12 var_dump($b != null);
13 var_dump($b == null);
14 var_dump($b !== null);
15 var_dump($b === null);
H A Dbug73916.phpt6 class b{};
7 $b = new b;
9 $test[] =& $b;
16 #0 test(Array ([0] => Array ([0] => a),[1] => b Object ())) called at [%sbug73916.php:%d]
H A Dflexible-heredoc-complex-test1.phpt7 $a = 'b';
8 ${"b\nb\n d"} = 'b';
13 b
26 b
H A Dflexible-heredoc-complex-test2.phpt7 $a = 'b';
8 ${"b\nb\n d"} = 'b';
13 b
26 b
H A Dbug48215_2.phpt9 class b extends a {}
10 class c extends b {
12 b::b();
19 Fatal error: Uncaught Error: Call to undefined method b::b() in %s:%d
/PHP-7.3/ext/phar/tests/zip/
H A Dphar_oo_compressallgz.phpt15 $phar['b'] = 'b';
20 var_dump(file_get_contents($pname . '/b'));
21 var_dump($phar['b']->isCompressed());
29 var_dump(file_get_contents($pname . '/b'));
30 var_dump($phar['b']->isCompressed(Phar::BZ2));
31 var_dump($phar['b']->isCompressed(Phar::GZ));
33 var_dump($phar['b']->isCompressed(Phar::BZ2));
45 string(1) "b"
52 string(1) "b"
H A Dopen_for_write_newfile.phpt20 $files['b.php'] = '<?php echo "This is b\n"; ?>';
21 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
28 $fp = fopen($alias . '/b/new.php', 'wb');
32 include $alias . '/b/c.php';
33 include $alias . '/b/new.php';
40 This is b/c
/PHP-7.3/ext/standard/tests/array/
H A Dbug29493.phpt10 $b = $a;
13 $b['foo'] = 'bbb';
17 var_dump($a, $b);
23 var_dump($a, $b);
31 $b = &$a;
35 $b['foo'] = 'bbb';
39 var_dump($a, $b);
45 var_dump($a, $b);
53 $b = &$a;
57 unset($b);
H A Darray_udiff_uassoc_basic.phpt14 static function comp_func_cr($a, $b) {
15 if ($a->priv_member === $b->priv_member) return 0;
16 return ($a->priv_member > $b->priv_member) ? 1 : -1;
18 static function comp_func_key($a, $b) {
19 if ($a === $b) return 0;
20 return ($a > $b) ? 1 : -1;
24 $b = array("0.2" => new cr(9), "0.5" => new cr(22), 0 => new cr(3), 1 => new cr(4), 2 => new cr(-15…
25 $result = array_udiff_uassoc($a, $b, array("cr", "comp_func_cr"), array("cr", "comp_func_key"));
H A Darray_uintersect_uassoc_basic.phpt14 static function comp_func_cr($a, $b) {
15 if ($a->priv_member === $b->priv_member) return 0;
16 return ($a->priv_member > $b->priv_member) ? 1 : -1;
18 static function comp_func_key($a, $b) {
19 if ($a === $b) return 0;
20 return ($a > $b) ? 1 : -1;
24 $b = array("0.2" => new cr(9), "0.5" => new cr(22), 0 => new cr(3), 1 => new cr(4), 2 => new cr(-15…
25 $result = array_uintersect_uassoc($a, $b, array("cr", "comp_func_cr"), array("cr", "comp_func_key")…
H A Dbug28974.phpt5 $a = $b = $c = array(0,1,2,3,4,5);
16 echo 'print_r(array_splice($b,2,2147483645));'."\n";
17 print_r(array_splice($b,2,2147483645));
18 echo "\$b is :";
19 print_r($b);
64 print_r(array_splice($b,2,2147483645));
72 $b is :Array
/PHP-7.3/ext/phar/tests/
H A D019c.phpt19 $files['b/a'] = 'b';
20 $files['b/c/d'] = 'c';
58 string(2) "/b"
60 string(12) "phar://hio/b"
61 string(4) "/b/a"
63 string(1) "b"
64 string(4) "/b/c"
66 string(14) "phar://hio/b/c"
67 string(6) "/b/c/d"
/PHP-7.3/ext/opcache/tests/
H A Dbug70423.phpt27 $b = 1;
28 $fn1 = function() use (&$b) {echo "$b\n"; $b++;};
29 $fn2 = function() use (&$b) {echo "$b\n"; $b++;};
30 $b = 5;
/PHP-7.3/ext/phar/tests/tar/
H A Dopen_for_write_newfile.phpt20 $files['b.php'] = '<?php echo "This is b\n"; ?>';
21 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
29 $fp = fopen($alias . '/b/new.php', 'wb');
33 include $alias . '/b/c.php';
34 include $alias . '/b/new.php';
42 This is b/c
/PHP-7.3/ext/phar/tests/cache_list/files/
H A Dphar_oo_test.inc18 $files['b.php'] = '<?php echo "This is b.php\n"; ?>';
19 $files['b/c.php'] = '<?php echo "This is b/c.php\n"; ?>';
20 $files['b/d.php'] = '<?php echo "This is b/d.php\n"; ?>';
26 2,a,b
33 2,a,b
/PHP-7.3/ext/pcre/tests/
H A Drequest47456.phpt8 preg_match_all('/(?J)(?<chr>[ac])(?<num>\d)|(?<chr>[b])/', 'a1bc3', $m, PREG_SET_ORDER);
12 preg_match_all('/(?<chr>[ac])(?<num>\d)|(?<chr>[b])/J', 'a1bc3', $m, PREG_SET_ORDER);
33 string(1) "b"
35 string(1) "b"
43 string(1) "b"
76 string(1) "b"
78 string(1) "b"
86 string(1) "b"

Completed in 42 milliseconds

12345678910>>...89