Home
last modified time | relevance | path

Searched refs:b (Results 201 – 225 of 2490) sorted by relevance

12345678910>>...100

/PHP-7.0/ext/opcache/tests/
H A Dbug70423.phpt25 $b = 1;
26 $fn1 = function() use (&$b) {echo "$b\n"; $b++;};
27 $fn2 = function() use (&$b) {echo "$b\n"; $b++;};
28 $b = 5;
/PHP-7.0/ext/simplexml/tests/
H A Dbug66084_0.phpt7 echo var_dump(simplexml_load_string('<a><b/><c><x/></c></a>')), "\n";
8 echo var_dump(simplexml_load_string('<a><b/><d/><c><x/></c></a>')), "\n";
9 echo var_dump(simplexml_load_string('<a><b/><c><d/><x/></c></a>')), "\n";
10 echo var_dump(simplexml_load_string('<a><b/><c><d><x/></d></c></a>')), "\n";
14 ["b"]=>
26 ["b"]=>
41 ["b"]=>
56 ["b"]=>
/PHP-7.0/ext/spl/tests/
H A DSplDoublyLinkedList_serialization.phpt8 $q->enqueue("b");
15 $s->push("b");
29 string(1) "b"
32 string(42) "C:8:"SplQueue":22:{i:4;:s:1:"a";:s:1:"b";}"
41 string(1) "b"
52 string(1) "b"
55 string(42) "C:8:"SplStack":22:{i:6;:s:1:"a";:s:1:"b";}"
64 string(1) "b"
/PHP-7.0/ext/phar/tests/
H A D023.phpt15 $files['b.php'] = '<?php echo "This is b\n"; ?>';
16 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
21 var_dump(file_get_contents($pname . '/b.php'));
22 var_dump(file_get_contents($pname . '/b/c.php'));
30 string(28) "<?php echo "This is b\n"; ?>"
31 string(30) "<?php echo "This is b/c\n"; ?>"
H A D019c.phpt20 $files['b/a'] = 'b';
21 $files['b/c/d'] = 'c';
59 string(2) "/b"
61 string(12) "phar://hio/b"
62 string(4) "/b/a"
64 string(1) "b"
65 string(4) "/b/c"
67 string(14) "phar://hio/b/c"
68 string(6) "/b/c/d"
/PHP-7.0/ext/intl/tests/
H A Dresourcebundle_internal.phpt7 $b = new ResourceBundle('de_DE', 'ICUDATA-region');
8 var_dump($b->get('Countries')->get('DE'));
10 $b = new ResourceBundle('icuver', 'ICUDATA');
11 var_dump($b->get('ICUVersion') !== NULL);
13 $b = new ResourceBundle('supplementalData', 'ICUDATA', false);
14 var_dump($b->get('cldrVersion') !== NULL);
/PHP-7.0/Zend/tests/bug67436/
H A Dbug67436_nohandler.phpt11 if (in_array($classname, array('a','b','c'))) {
18 $b = new b();
19 $b->test();
22 Warning: Declaration of b::test() should be compatible with a::test($arg = c::TESTCONSTANT) in %s%e…
23 b::test()
/PHP-7.0/tests/lang/
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 DpassByReference_008.phpt24 $b = 'original.b';
25 refVal($b, $b);
26 var_dump($b);
38 string(10) "original.b"
39 string(10) "original.b"
/PHP-7.0/Zend/tests/
H A Dlist_002.phpt9 $b =& $a;
11 list($a, list($b)) = array($a, array($b));
12 var_dump($a, $b, $a === $b);
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]
/PHP-7.0/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 Darray_key_exists_object2.phpt22 function __construct($a, $b, $c = null) {
24 $this->var2 = $b;
32 $class1 = new myClass ('a', 'b');
64 [%b|u%"var1"]=>
66 [%b|u%"var2":protected]=>
67 %unicode|string%(1) "b"
68 [%b|u%"var3":%b|u%"myClass":private]=>
77 [%b|u%"var1"]=>
79 [%b|u%"var2":protected]=>
81 [%b|u%"var3":%b|u%"myClass":private]=>
/PHP-7.0/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_c.phpt23 $files['b.php'] = '<?php echo "This is b\n"; ?>';
24 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
33 $fp = fopen($alias . '/b/new.php', 'wb');
34 fwrite($fp, b'extra');
37 include $alias . '/b/c.php';
38 include $alias . '/b/new.php';
46 Warning: fopen(phar://%sopen_for_write_newfile_c.phar.zip/b/new.php): failed to open stream: phar e…
51 This is b/c
53 … include(phar://%sopen_for_write_newfile_c.phar.zip/b/new.php): failed to open stream: phar error:…
55 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c.phar.zip/b/new.php' for inclu…
/PHP-7.0/ext/phar/tests/tar/
H A Dopen_for_write_newfile_c_5_2.phpt21 $files['b.php'] = '<?php echo "This is b\n"; ?>';
22 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
31 $fp = fopen($alias . '/b/new.php', 'wb');
32 fwrite($fp, b'extra');
34 include $alias . '/b/c.php';
35 include $alias . '/b/new.php';
44 Warning: fopen(phar://%sopen_for_write_newfile_c_5_2.phar.tar/b/new.php): failed to open stream: ph…
49 This is b/c
51 …lude(phar://%sopen_for_write_newfile_c_5_2.phar.tar/b/new.php): failed to open stream: phar error:…
53 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c_5_2.phar.tar/b/new.php' for i…
/PHP-7.0/ext/mysqli/tests/
H A Dmysqli_fetch_field_direct.phpt51 [%u|b%"name"]=>
53 [%u|b%"orgname"]=>
55 [%u|b%"table"]=>
57 [%u|b%"orgtable"]=>
59 [%u|b%"def"]=>
61 [%u|b%"db"]=>
63 [%u|b%"catalog"]=>
67 [%u|b%"length"]=>
71 [%u|b%"flags"]=>
73 [%u|b%"type"]=>
[all …]
/PHP-7.0/ext/mbstring/tests/
H A Dmb_ereg_variation4.phpt26 $character_classes = array (b'[[:alnum:]]+', /*1*/
27 b'[[:alpha:]]+',
28 b'[[:ascii:]]+',
29 b'[[:blank:]]+',
30 b'[[:cntrl:]]+',/*5*/
31 b'[[:digit:]]+',
32 b'[[:graph:]]+',
33 b'[[:lower:]]+',
34 b'[[:print:]]+',
36 b'[[:space:]]+',
[all …]
/PHP-7.0/ext/standard/tests/strings/
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));
/PHP-7.0/ext/fileinfo/
H A Dmagicdata.patch19 +++ b/magic/Magdir/commands
45 +++ b/magic/Magdir/commands
71 +++ b/magic/Magdir/msooxml
179 ->>>>(1.b+2) ubequad 0xfa8cc88ed8ba0000 \b, PC-DOS 1.0 bootloader
180 +#>>>>(1.b+2) ubequad 0xfa8cc88ed8ba0000 \b, PC-DOS 1.0 bootloader
190 ->>>>(1.b+2) ubequad 0xfa8cc88ed833d28e \b, PC-DOS 1.1 bootloader
191 +#>>>>(1.b+2) ubequad 0xfa8cc88ed833d28e \b, PC-DOS 1.1 bootloader
208 ->>>>(1.b+2) ubequad 0x8cc88ed8fa8ed0bc \b, MS-DOS 1.25 bootloader
209 +#>>>>(1.b+2) ubequad 0x8cc88ed8fa8ed0bc \b, MS-DOS 1.25 bootloader
214 ->>>>(1.b+2) ubequad 0xfa0e17bc007cb860 \b, MS-DOS 2.11 bootloader
[all …]
/PHP-7.0/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.0/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 26 milliseconds

12345678910>>...100