Home
last modified time | relevance | path

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

12345678910>>...100

/PHP-7.0/ext/mbstring/tests/
H A Dmb_ereg2.phpt8 $a = -1; $b = -1; $c = -1;
9 mbereg($a, $b, $c);
10 var_dump($a, $b, $c);
12 mberegi($a, $b, $c);
13 var_dump($a, $b, $c);
15 mbereg_search_init($a, $b, $c);
16 var_dump($a, $b, $c);
/PHP-7.0/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";
H A Dbug68996.phpt16 <b>Warning</b>: : failed to open stream: No such file or directory in <b>%sbug68996.php</b> on lin…
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_log.c102 char *s, *b; in fpm_log_write() local
146 b = buffer; in fpm_log_write()
173 *b = '%'; in fpm_log_write()
237 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", env ? env : "-"); in fpm_log_write()
264 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%zu", proc.memory); in fpm_log_write()
334 *b = '-'; in fpm_log_write()
397 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", tmp); in fpm_log_write()
404 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", proc.auth_user); in fpm_log_write()
448 b += len2; in fpm_log_write()
461 *b = *s; in fpm_log_write()
[all …]
/PHP-7.0/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
/PHP-7.0/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-7.0/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-7.0/tests/lang/
H A Dfunc_get_args.004.phpt28 $b = 'original.b';
29 refVal($b, $b);
30 var_dump($b);
53 string(10) "original.b"
54 string(10) "original.b"
57 string(10) "original.b"
59 string(10) "original.b"
H A Dshort_tags.004.phpt16 <? $b=3; ?>
19 echo "{$b}";
21 <?= "{$b}"?>
29 <? $b=3; ?>
32 Notice: Undefined variable: b in %s on line %d
34 Notice: Undefined variable: b in %s on line %d
/PHP-7.0/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-7.0/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-7.0/ext/standard/tests/serialize/
H A Dbug71995.phpt7 public $b;
9 $this->b = new StdClass();
12 return array("b", "b");
21 Notice: serialize(): "b" is returned from __sleep multiple times in %sbug71995.php on line %d
22 string(39) "O:1:"A":1:{s:1:"b";O:8:"stdClass":0:{}}"
24 ["b"]=>
/PHP-7.0/ext/reflection/tests/
H A DReflectionClass_getProperty_003.phpt100 [%u|b%"name"]=>
102 [%u|b%"class"]=>
108 [%u|b%"name"]=>
110 [%u|b%"class"]=>
118 [%u|b%"name"]=>
126 [%u|b%"name"]=>
136 [%u|b%"name"]=>
144 [%u|b%"name"]=>
152 [%u|b%"name"]=>
162 [%u|b%"name"]=>
[all …]
H A DReflectionClass_getProperty_004.phpt100 [%u|b%"name"]=>
102 [%u|b%"class"]=>
108 [%u|b%"name"]=>
110 [%u|b%"class"]=>
118 [%u|b%"name"]=>
126 [%u|b%"name"]=>
136 [%u|b%"name"]=>
144 [%u|b%"name"]=>
152 [%u|b%"name"]=>
162 [%u|b%"name"]=>
[all …]
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-7.0/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 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-7.0/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-7.0/ext/zip/tests/
H A Doo_externalattributes.phpt25 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b), $a, $b);
27 var_dump($zip->getExternalAttributesIndex($id, $a, $b), $a, $b);
33 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b), $a, $b);
34 var_dump($zip->getExternalAttributesIndex($id, $a, $b), $a, $b);
36 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b, ZipArchive::FL_UNCHANGED), $a, $b);
37 var_dump($zip->getExternalAttributesIndex($id, $a, $b, ZipArchive::FL_UNCHANGED), $a, $b);
/PHP-7.0/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;

Completed in 51 milliseconds

12345678910>>...100