Home
last modified time | relevance | path

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

12345678910>>...87

/PHP-5.3/Zend/tests/
H A Dbug53958.phpt16 $b = 1;
17 $fn1 = function() use (&$b) {echo "$b\n"; $b++;};
18 $fn2 = function() use (&$b) {echo "$b\n"; $b++;};
19 $b = 5;
H A Dbug48215_2.phpt9 class b extends a {}
10 class c extends b {
12 b::b();
19 Fatal error: Call to undefined method b::b() in %s on line %d
H A Dinter_03.phpt7 const b = 2;
10 interface b extends a {
11 const c = self::b;
14 var_dump(b::c, a::b);
H A Dclass_alias_001.phpt11 $b = new bar;
13 var_dump($a == $b, $a === $b);
14 var_dump($a instanceof $b);
19 var_dump($b instanceof foo);
20 var_dump($b instanceof bar);
/PHP-5.3/ext/phar/tests/
H A Dphar_oo_compressed_001b.phpt17 $files['b'] = 'b';
26 var_dump(file_get_contents($pname . '/b'));
27 var_dump($phar['b']->isCompressed());
33 $phar['b'] = 'new b';
34 $phar['b']->compress(Phar::BZ2);
40 var_dump(file_get_contents($pname . '/b'));
41 var_dump($phar['b']->isCompressed());
56 string(1) "b"
62 string(5) "new b"
H A Dphar_oo_compressed_001.phpt17 $files['b'] = 'b';
26 var_dump(file_get_contents($pname . '/b'));
27 var_dump($phar['b']->isCompressed());
33 $phar['b'] = 'new b';
34 $phar['b']->compress(Phar::GZ);
40 var_dump(file_get_contents($pname . '/b'));
41 var_dump($phar['b']->isCompressed());
56 string(1) "b"
62 string(5) "new b"
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 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.phpt21 $files['b/a'] = 'b';
22 $files['b/c/d'] = 'c';
60 string(2) "/b"
62 string(12) "phar://hio/b"
63 string(4) "/b/a"
65 string(1) "b"
66 string(4) "/b/c"
68 string(14) "phar://hio/b/c"
69 string(6) "/b/c/d"
/PHP-5.3/ext/mbstring/tests/
H A Dmb_ereg3.phpt11 $a = -1; $b = -1; $c = -1;
12 mbereg($a, $b, $c);
13 var_dump($a, $b, $c);
15 mberegi($a, $b, $c);
16 var_dump($a, $b, $c);
18 mbereg_search_init($a, $b, $c);
19 var_dump($a, $b, $c);
H A Dmb_ereg4.phpt11 $a = -1; $b = -1; $c = -1;
12 mbereg($a, $b, $c);
13 var_dump($a, $b, $c);
15 mberegi($a, $b, $c);
16 var_dump($a, $b, $c);
18 mbereg_search_init($a, $b, $c);
19 var_dump($a, $b, $c);
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-5.3/ext/pcre/pcrelib/testdata/
H A Dtestinput2183 /(?<=aaa|b{0,3})b/
573 /a(?(1)b..|b..)(.)/I
755 /^(aa(b(b))?)+$/I
758 /^(?:aa(b(b))?)+$/I
761 /^(?:aa(b(?:b))?)+$/I
770 /^(?:aa(?:b(b))?)+$/I
2525 /(?(?=.*b)b|^)/CI
2529 /(?(?=b).*b|^d)/I
2857 /(a|b\1)(a|b\1)/SI
3426 /\btype\b\W*?\btext\b\W*?\bjavascript\b/IS
[all …]
H A Dtestinput5254 a\x{85}b
261 a\x{85}b
272 a\x{85}b
279 a\x{85}b
293 /a[^]b/<JS>8
311 /Xa{2,4}b/8
318 /Xa{2,4}?b/8
325 /Xa{2,4}+b/8
374 /X\d{2,4}b/8
395 /X\D{2,4}b/8
[all …]
/PHP-5.3/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 …]
/PHP-5.3/ext/standard/tests/array/
H A Dbug48854.phpt27 [%u|b%"friends"]=>
29 [%u|b%"children"]=>
31 [%u|b%"dogs"]=>
36 [%u|b%"friends"]=>
38 [%u|b%"children"]=>
40 [%u|b%"cats"]=>
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);
/PHP-5.3/ext/standard/tests/class_object/
H A Dget_object_vars_basic_002.phpt14 public function testA($b) {
16 var_dump(get_object_vars($b));
26 public function testB($b) {
28 var_dump(get_object_vars($b));
33 $b = new B;
35 $b->testB($b);
37 $b->testA($b);
/PHP-5.3/ext/openssl/tests/
H A D003.phpt14 $b = 1;
18 var_dump(openssl_pkcs7_decrypt($a, $b, $c, $d));
21 var_dump(openssl_pkcs7_decrypt($b, $b, $b, $b));
22 var_dump(openssl_pkcs7_decrypt($a, $b, "", ""));
23 var_dump(openssl_pkcs7_decrypt($a, $b, true, false));
24 var_dump(openssl_pkcs7_decrypt($a, $b, 0, 0));
/PHP-5.3/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-5.3/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-5.3/ext/phar/tests/zip/
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…
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"
/PHP-5.3/ext/session/tests/
H A D006.phpt22 class b {
24 function b(&$a) {
30 $b = new b($a);
33 var_dump($a,$b);
36 session_register("b");
40 session_unregister("b");
45 var_dump($a,$b);
54 object(b)#%d (1) {
74 object(b)#%d (1) {

Completed in 42 milliseconds

12345678910>>...87