Home
last modified time | relevance | path

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

12345678910>>...91

/PHP-7.4/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 D007.phpt11 global $b;
13 $b = 5;
14 echo "$a $b ";
21 echo "$a $b $c ";
23 echo "$a $b $c ";
/PHP-7.4/Zend/
H A Dzend_sort.c92 if (cmp(a, b) > 0) { in zend_sort_2()
93 swp(a, b); in zend_sort_2()
103 swp(b, c); in zend_sort_3()
105 swp(a, b); in zend_sort_3()
113 swp(a, b); in zend_sort_3()
114 if (cmp(b, c) > 0) { in zend_sort_3()
115 swp(b, c); in zend_sort_3()
125 swp(b, c); in zend_sort_4()
127 swp(a, b); in zend_sort_4()
141 swp(b, c); in zend_sort_5()
[all …]
/PHP-7.4/Zend/tests/
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.4/ext/standard/tests/strings/
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));
H A Dbug22008.phpt12 <b>PHP!</b>
18 echo trim(strip_tags($html, '<b>'))."\n";
24 <b>PHP!</b>
/PHP-7.4/ext/phar/tests/
H A Dopen_for_write_newfile_b.phpt18 $files['b.php'] = '<?php echo "This is b\n"; ?>';
19 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
22 $fp = fopen($pname . '/b/new.php', 'wb');
25 include $pname . '/b/c.php';
26 include $pname . '/b/new.php';
33 Warning: fopen(phar://%sopen_for_write_newfile_b.phar.php/b/new.php): failed to open stream: phar e…
38 This is b/c
40 … include(phar://%sopen_for_write_newfile_b.phar.php/b/new.php): failed to open stream: phar error:…
42 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_b.phar.php/b/new.php' for inclu…
H A Dopen_for_write_newfile_c.phpt18 $files['b.php'] = '<?php echo "This is b\n"; ?>';
19 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
22 $fp = fopen($pname . '/b/new.php', 'wb');
25 include $pname . '/b/c.php';
26 include $pname . '/b/new.php';
33 Warning: fopen(phar://%sopen_for_write_newfile_c.phar.php/b/new.php): failed to open stream: phar e…
38 This is b/c
40 … include(phar://%sopen_for_write_newfile_c.phar.php/b/new.php): failed to open stream: phar error:…
42 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c.phar.php/b/new.php' for inclu…
H A Dphar_oo_uncompressall.phpt17 $files['b'] = 'b';
26 var_dump(file_get_contents($pname . '/b'));
27 var_dump($phar['b']->isCompressed());
36 var_dump(file_get_contents($pname . '/b'));
37 var_dump($phar['b']->isCompressed(Phar::GZ));
38 var_dump($phar['b']->isCompressed(Phar::BZ2));
41 var_dump($phar['b']->isCompressed(Phar::BZ2));
46 var_dump(file_get_contents($pname . '/b'));
61 string(1) "b"
68 string(1) "b"
[all …]
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.4/ext/standard/tests/array/
H A Darray_merge_recursive_variation9.phpt20 $arr1 = array("a" => 1, "b" => 2);
21 $arr2 = array("b" => 2, "c" => 4);
26 $arr1 = array("a" => 1.1, "b" => 2.2);
27 $arr2 = array("b" => 2.2, "c" => 3.3);
32 $arr1 = array("a" => "hello", "b" => "world");
38 $arr1 = array("a" => true, "b" => false);
39 $arr2 = array("b" => false);
57 ["b"]=>
71 ["b"]=>
85 ["b"]=>
[all …]
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_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 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"));
/PHP-7.4/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.4/ext/simplexml/tests/
H A Dbug41867.phpt8 $a = simplexml_load_string("<a><b><c/></b></a>");
10 echo $a->b->getName()."\n";
11 echo $a->b->c->getName()."\n";
16 b
/PHP-7.4/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.4/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.4/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.4/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"
/PHP-7.4/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.4/ext/fileinfo/
H A Dmagicdata.patch10 +++ b/magic/Magdir/animation
57 +>2 byte&0xF0 0x10 \b, 32 kbps
58 +>2 byte&0xF0 0x20 \b, 40 kbps
59 +>2 byte&0xF0 0x30 \b, 48 kbps
60 +>2 byte&0xF0 0x40 \b, 56 kbps
61 +>2 byte&0xF0 0x50 \b, 64 kbps
62 +>2 byte&0xF0 0x60 \b, 80 kbps
63 +>2 byte&0xF0 0x70 \b, 96 kbps
64 +>2 byte&0xF0 0x80 \b, 112 kbps
77 +++ b/magic/Magdir/images
[all …]

Completed in 42 milliseconds

12345678910>>...91