Home
last modified time | relevance | path

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

12345678910>>...96

/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dfrontcontroller12.phar.inc6 var_dump($_SERVER[b"SCRIPT_NAME"]);
7 var_dump($_SERVER[b"SCRIPT_FILENAME"]);
8 var_dump($_SERVER[b"REQUEST_URI"]);
9 var_dump($_SERVER[b"PHAR_PHP_SELF"]);
10 var_dump($_SERVER[b"PHAR_SCRIPT_NAME"]);
11 var_dump($_SERVER[b"PHAR_SCRIPT_FILENAME"]);
12 var_dump($_SERVER[b"PHAR_REQUEST_URI"]);
/PHP-5.5/ext/phar/tests/files/
H A Dfrontcontroller12.phar.inc6 var_dump($_SERVER[b"SCRIPT_NAME"]);
7 var_dump($_SERVER[b"SCRIPT_FILENAME"]);
8 var_dump($_SERVER[b"REQUEST_URI"]);
9 var_dump($_SERVER[b"PHAR_PHP_SELF"]);
10 var_dump($_SERVER[b"PHAR_SCRIPT_NAME"]);
11 var_dump($_SERVER[b"PHAR_SCRIPT_FILENAME"]);
12 var_dump($_SERVER[b"PHAR_REQUEST_URI"]);
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput1126 1: b
129 1: b
158 1: b
190 1: b
5439 /(?:c|d)(?:)(?:a(?:)(?:b)(?:b(?:))(?:b(?:)(?:b)))/
6618 /(?(?=.*b)b|^)/
6624 /(?(?=^.*b)b|^)/
6630 /(?(?=.*b)b|^)*/
6636 /(?(?=.*b)b|^)+/
6642 /(?(?=b).*b|^d)/
[all …]
H A Dtestinput910 /a\x{100}*b/8
12 a\x{100}b
15 /a\x{100}+b/8
16 a\x{100}b
35 /X\b/8
63 /a.b/8
70 /a(.{3})b/8
108 /a(.{3})b/8
347 a.b.c
353 a.b.c
[all …]
/PHP-5.5/ext/phar/tests/
H A D019cU.phpt14 $file = b"<?php
20 $files['b/a'] = 'b';
21 $files['b/c/d'] = 'c';
59 unicode(2) "/b"
61 unicode(12) "phar://hio/b"
62 unicode(4) "/b/a"
64 string(1) "b"
65 unicode(4) "/b/c"
67 unicode(14) "phar://hio/b/c"
68 unicode(6) "/b/c/d"
H A D024.phpt15 $files['b.php'] = '<?php echo "This is b\n"; ?>';
16 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
21 include $pname . '/b.php';
22 include $pname . '/b/c.php';
30 This is b
31 This is b/c
H A D019bU.phpt15 $file = b"<?php
21 $files['b/a'] = 'b';
22 $files['b/c/d'] = 'c';
56 unicode(2) "/b"
58 unicode(12) "phar://hio/b"
59 unicode(4) "/b/a"
61 unicode(4) "/b/c"
63 unicode(14) "phar://hio/b/c"
64 unicode(6) "/b/c/d"
H A Dpharfileinfo_compression.phpt16 $phar['a/b'] = 'hi there';
18 $b = $phar['a/b'];
20 $b->isCompressed(array());
22 $b->isCompressed(25);
27 $b->compress(25);
33 $c = $tar['a/b'];
46 $b->compress(Phar::GZ);
51 var_dump($b->compress(Phar::GZ));
60 $phar['a/b']->decompress();
70 var_dump($b->decompress());
[all …]
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"
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getProperty_001.phpt64 [%u|b%"name"]=>
66 [%u|b%"class"]=>
70 [%u|b%"name"]=>
72 [%u|b%"class"]=>
79 [%u|b%"name"]=>
81 [%u|b%"class"]=>
85 [%u|b%"name"]=>
94 [%u|b%"name"]=>
100 [%u|b%"name"]=>
109 [%u|b%"name"]=>
[all …]
/PHP-5.5/ext/phar/tests/zip/
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');
29 fwrite($fp, b'extra');
32 include $alias . '/b/c.php';
33 include $alias . '/b/new.php';
40 This is b/c
/PHP-5.5/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');
30 fwrite($fp, b'extra');
33 include $alias . '/b/c.php';
34 include $alias . '/b/new.php';
42 This is b/c
/PHP-5.5/ext/standard/tests/strings/
H A Dbug35817.phpt6 $b = unpack("H3", $a);
7 var_dump($b);
10 $b = unpack("H2", $a);
11 var_dump($b);
14 $b = unpack("H", $a);
15 var_dump($b);
H A Dbug47322.phpt6 sscanf(":59:58","%s:%d:%f", $a, $b, $c);
7 echo "[$a][$b][$c]\n";
9 sscanf("15:01:58.2","%d:%f:%f", $a, $b, $c);
10 echo "[$a][$b][$c]\n";
12 sscanf("15.1111::foo","%f:%d:%s", $a, $b, $c);
13 echo "[$a][$b][$c]\n";
H A Dcrypt_variation1.phpt12 $b = str_repeat("A", 124);
13 echo crypt("A", "$5$" . $b)."\n";
14 $b = str_repeat("A", 125);
15 echo crypt("A", "$5$" . $b)."\n";
16 $b = str_repeat("A", 4096);
17 echo crypt("A", "$5$" . $b)."\n";
/PHP-5.5/ext/phar/tests/tar/files/
H A Dfrontcontroller12.phar.inc6 var_dump($_SERVER[b"SCRIPT_NAME"]);
7 var_dump($_SERVER[b"SCRIPT_FILENAME"]);
8 var_dump($_SERVER[b"REQUEST_URI"]);
9 var_dump($_SERVER[b"PHAR_PHP_SELF"]);
10 var_dump($_SERVER[b"PHAR_SCRIPT_NAME"]);
11 var_dump($_SERVER[b"PHAR_SCRIPT_FILENAME"]);
12 var_dump($_SERVER[b"PHAR_REQUEST_URI"]);
/PHP-5.5/ext/phar/tests/zip/files/
H A Dfrontcontroller12.phar.inc6 var_dump($_SERVER[b"SCRIPT_NAME"]);
7 var_dump($_SERVER[b"SCRIPT_FILENAME"]);
8 var_dump($_SERVER[b"REQUEST_URI"]);
9 var_dump($_SERVER[b"PHAR_PHP_SELF"]);
10 var_dump($_SERVER[b"PHAR_SCRIPT_NAME"]);
11 var_dump($_SERVER[b"PHAR_SCRIPT_FILENAME"]);
12 var_dump($_SERVER[b"PHAR_REQUEST_URI"]);
/PHP-5.5/ext/standard/tests/array/
H A Dbug50006.phpt14 function magic_sort_cmp($a, $b) {
16 $b = substr($b, 1);
17 if (!$a) return $b ? -1 : 0;
18 if (!$b) return 1;
19 return magic_sort_cmp($a, $b);
H A Darray_merge.phpt121 [b] => string
184 [b] => string
248 [b] => string
313 [b] => string
350 [b] => string
359 [b] => string
369 [b] => string
379 [b] => string
651 ["b"]=>
695 ["b"]=>
[all …]
H A Dbug50006_1.phpt14 function magic_sort_cmp($a, $b) {
16 $b = substr($b, 1);
17 if (!$a) return $b ? -1 : 0;
18 if (!$b) return 1;
19 return magic_sort_cmp($a, $b);
H A Dbug50006_2.phpt14 function magic_sort_cmp($a, $b) {
16 $b = substr($b, 1);
17 if (!$a) return $b ? -1 : 0;
18 if (!$b) return 1;
19 return magic_sort_cmp($a, $b);
/PHP-5.5/Zend/tests/
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 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;
/PHP-5.5/ext/standard/tests/math/
H A Dfloorceil.phpt5 $a = ceil (-0); $b = ceil (-1); $c = ceil (-1.5);
7 var_dump ($a, $b, $c, $d, $e);
9 $a = ceil (0); $b = ceil (0.5); $c = ceil (1);
11 var_dump ($a, $b, $c, $d, $e, $f);
13 $a = floor (-0); $b = floor (-0.5); $c = floor (-1);
15 var_dump ($a, $b, $c, $d, $e, $f);
17 $a = floor (0); $b = floor (0.5); $c = floor (1);
19 var_dump ($a, $b, $c, $d, $e, $f);
/PHP-5.5/tests/lang/
H A Dstatic_variation_001.phpt24 eval(' static $b = array(10,11,12); ');
27 eval(' static $b = array(1,2,3); ');
30 eval(' static $b = array(4,5,6); ');
31 var_dump($b);
34 eval('function g2b() { static $b = array(7, 8, 9); var_dump($b); } ');
35 var_dump($b);
41 var_dump($b);

Completed in 136 milliseconds

12345678910>>...96