Home
last modified time | relevance | path

Searched refs:b (Results 126 – 150 of 2612) sorted by relevance

12345678910>>...105

/php-src/ext/standard/tests/strings/
H A Dbug68996.phpt11 <b>Warning</b>: fopen(�c): Failed to open stream: No such file or directory in <b>%sbug68996.php</
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";
/php-src/ext/phar/tests/
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';
29 This is b
30 This is b/c
H A Dopen_for_write_newfile_b.phpt16 $files['b.php'] = '<?php echo "This is b\n"; ?>';
17 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
20 var_dump(fopen($pname . '/b/new.php', 'wb'));
21 include $pname . '/b/c.php';
22 include $pname . '/b/new.php';
28 Warning: fopen(phar://%sopen_for_write_newfile_b.phar.php/b/new.php): Failed to open stream: phar e…
30 This is b/c
32 … include(phar://%sopen_for_write_newfile_b.phar.php/b/new.php): Failed to open stream: phar error:…
34 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_b.phar.php/b/new.php' for inclu…
H A Dopen_for_write_newfile_c.phpt16 $files['b.php'] = '<?php echo "This is b\n"; ?>';
17 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
20 var_dump(fopen($pname . '/b/new.php', 'wb'));
21 include $pname . '/b/c.php';
22 include $pname . '/b/new.php';
28 Warning: fopen(phar://%sopen_for_write_newfile_c.phar.php/b/new.php): Failed to open stream: phar e…
30 This is b/c
32 … include(phar://%sopen_for_write_newfile_c.phar.php/b/new.php): Failed to open stream: phar error:…
34 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c.phar.php/b/new.php' for inclu…
H A Dpharfileinfo_compression.phpt16 $phar['a/b'] = 'hi there';
18 $b = $phar['a/b'];
21 $b->isCompressed(25);
26 $b->compress(25);
32 $c = $tar['a/b'];
45 $b->compress(Phar::GZ);
50 var_dump($b->compress(Phar::GZ));
51 var_dump($b->compress(Phar::GZ));
59 $phar['a/b']->decompress();
69 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());
55 string(1) "b"
61 string(5) "new b"
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());
55 string(1) "b"
61 string(5) "new b"
/php-src/Zend/tests/
H A Dlist_005.phpt8 list($a, $b, $c) = $str;
10 var_dump($a, $b, $c);
16 list($a, $b, $c) = $int;
18 var_dump($a, $b, $c);
24 list($a, $b, $c) = $obj;
26 var_dump($a, $b, $c);
32 list($a, $b, $c) = $arr;
34 var_dump($a, $b, $c);
H A Dflexible-heredoc-nowdoc.phpt23 b
33 b
43 b
56 b\r\n
64 b
87 b
94 b
101 b
113 b
122 b
/php-src/ext/standard/tests/general_functions/
H A Dbug69646.phpt12 $b = 'b -c d\\';
14 var_dump( $b, escapeshellarg($b) );
27 …E_ESCAPED') . " " . escapeshellarg($script) . " " . escapeshellarg($a) . " " . escapeshellarg($b);
36 string(7) "b -c d\"
37 string(10) ""b -c d\\""
45 string(7) "b -c d\"
/php-src/ext/standard/tests/array/
H A Dbug45312.phpt10 static function comp_func_cr($a, $b) {
11 if ($a->priv_member === $b->priv_member) return 0;
12 return ($a->priv_member > $b->priv_member) ? 1 : -1;
14 static function comp_func_cr2($a, $b) {
16 if ($a->priv_member === $b->priv_member) return 0;
17 return ($a->priv_member < $b->priv_member) ? 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_assoc($a, $b, array("cr", "comp_func_cr"));
29 $result = array_udiff_assoc($a, $b, array("cr", "comp_func_cr2"));
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 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);
/php-src/ext/openssl/tests/
H A Dopenssl_pkcs7_decrypt_error.phpt14 $b = 1;
19 var_dump(openssl_pkcs7_decrypt($a, $b, $c, $d));
25 var_dump(openssl_pkcs7_decrypt($b, $b, $b, $b));
26 var_dump(openssl_pkcs7_decrypt($a, $b, "", ""));
27 var_dump(openssl_pkcs7_decrypt($a, $b, true, false));
28 var_dump(openssl_pkcs7_decrypt($a, $b, 0, 0));
H A Dopenssl_cms_decrypt_error.phpt14 $b = 1;
19 var_dump(openssl_cms_decrypt($a, $b, $c, $d));
25 var_dump(openssl_cms_decrypt($b, $b, $b, $b));
26 var_dump(openssl_cms_decrypt($a, $b, "", ""));
27 var_dump(openssl_cms_decrypt($a, $b, true, false));
28 var_dump(openssl_cms_decrypt($a, $b, 0, 0));
/php-src/ext/standard/tests/class_object/
H A Dget_object_vars_basic_002.phpt8 public function testA($b) {
10 var_dump(get_object_vars($b));
20 public function testB($b) {
22 var_dump(get_object_vars($b));
27 $b = new B;
29 $b->testB($b);
31 $b->testA($b);
/php-src/ext/zip/tests/
H A Doo_externalattributes.phpt22 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b), $a, $b);
24 var_dump($zip->getExternalAttributesIndex($id, $a, $b), $a, $b);
30 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b), $a, $b);
31 var_dump($zip->getExternalAttributesIndex($id, $a, $b), $a, $b);
33 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b, ZipArchive::FL_UNCHANGED), $a, $b);
34 var_dump($zip->getExternalAttributesIndex($id, $a, $b, ZipArchive::FL_UNCHANGED), $a, $b);
/php-src/Zend/tests/named_params/
H A Dcall_user_func_array.phpt7 $test = function($a = 'a', $b = 'b', $c = 'c') {
8 echo "a = $a, b = $b, c = $c\n";
50 a = A, b = B, c = c
51 a = A, b = B, c = c
52 a = A, b = b, c = C
62 a = A, b = B, c = c
63 a = A, b = B, c = c
64 a = A, b = b, c = C
/php-src/ext/opcache/tests/opt/
H A Dgh11170.phpt16 $b = -20;
19 $b = -10;
22 return $a | $b;
28 $b = -27;
31 $b = -25;
34 return $a & $b;
61 ; #1.CV1($b) NOVAL [undef]
79 0005 #5.CV1($b) [long] RANGE[-20..-20] = QM_ASSIGN int(-20)
97 …#9.CV1($b) [long] RANGE[-20..-10] = Phi(#5.CV1($b) [long] RANGE[-20..-20], #7.CV1($b) [long] RANGE…
107 ; #1.CV1($b) NOVAL [undef]
[all …]
/php-src/sapi/phpdbg/tests/
H A Dwatch_005.phpt13 b 3
25 >00003: $b = "a";
26 00004: $a = $b.$b;
33 00006: $a[1] = "b";
38 >00006: $a[1] = "b";
52 $b = "a";
53 $a = $b.$b;
55 $a[1] = "b";
/php-src/tests/lang/
H A Dfunc_get_args.004.phpt28 $b = 'original.b';
29 refVal($b, $b);
30 var_dump($b);
52 string(10) "original.b"
53 string(10) "original.b"
56 string(10) "original.b"
58 string(10) "original.b"
/php-src/ext/standard/tests/serialize/
H A Dbug71995.phpt7 public $b;
9 $this->b = new StdClass();
12 return array("b", "b");
21 Warning: serialize(): "b" is returned from __sleep() multiple times in %s on line %d
22 string(39) "O:1:"A":1:{s:1:"b";O:8:"stdClass":0:{}}"
24 ["b"]=>
/php-src/Zend/
H A Dzend_strtod.c837 (a, b) Bigint *a, *b; in mult() argument
1068 (a, b) Bigint *a, *b; in cmp() argument
1102 (a, b) Bigint *a, *b; in diff() argument
1710 b->x[b->wds++] = 1;
2017 b = lshift(b, n);
2090 b = increment(b);
2378 b = lshift(b, i);
2380 b = increment(b);
2410 b = lshift(b, b2);
3658 b->maxwds = 1 << (b->k = *(int*)b);
[all …]

Completed in 52 milliseconds

12345678910>>...105