Home
last modified time | relevance | path

Searched refs:b (Results 251 – 275 of 2383) sorted by last modified time

1...<<11121314151617181920>>...96

/PHP-5.5/ext/standard/tests/strings/
H A Dvprintf_variation19_64bit.phpt21 "% b % b % b",
H A Ducfirst.phpt38 'b', // single char
H A Durl_t.phpt63 '/foo.php?a=b&c=d',
64 'foo.php?a=b&c=d',
69 'http://1.2.3.4:/abc.asp?a=1&b=2',
667 --> /foo.php?a=b&c=d: array(2) {
671 string(7) "a=b&c=d"
674 --> foo.php?a=b&c=d: array(2) {
678 string(7) "a=b&c=d"
719 --> http://1.2.3.4:/abc.asp?a=1&b=2: array(4) {
727 string(7) "a=1&b=2"
H A Dvfprintf_basic.phpt35 writeAndDump( $fp, "%b %b", array( true, false ) );
39 writeAndDump( $fp, "Testing %b %d %f %s %x %X", array( 9, 6, 2.5502, "foobar", 15, 65 ) );
H A Dvfprintf_basic9.phpt54 b
56 b 84
58 b 84 b1
H A Dvfprintf_variation1.phpt50 writeAndDump( $fp, "Testing %b %d %f %o %s %x %X", array( 9, 6, 2.5502, 24, "foobar", 15, 65 ) );
H A Dtrim_error.phpt27 var_dump(trim($hello, "a..b..c"));
H A Dvfprintf_basic4.phpt14 $format1 = "%b";
15 $format2 = "%b %b";
16 $format3 = "%b %b %b";
H A Dstrstr.phpt55 'b',
168 var_dump( strstr("a", "b", "c") ); // args > expected
H A Dstrtolower-win32.phpt57 var_dump( strtolower("a", "b") ); /* Arguments > Expected */
74 0b => 0b
90 1b => 1b
106 2b => 2b
122 3b => 3b
138 4b => 6b
154 5b => 5b
170 6b => 6b
186 7b => 7b
202 8b => 8b
[all …]
H A Dstrtolower.phpt69 var_dump( strtolower("a", "b") ); /* Arguments > Expected */
86 0b => 0b
102 1b => 1b
118 2b => 2b
134 3b => 3b
150 4b => 6b
166 5b => 5b
182 6b => 6b
198 7b => 7b
H A Dstrtoupper1-win32.phpt57 var_dump( strtoupper("a", "b") ); /* Arguments > Expected */
74 0b => 0b
90 1b => 1b
106 2b => 2b
122 3b => 3b
138 4b => 4b
154 5b => 5b
170 6b => 4b
186 7b => 7b
202 8b => 8b
[all …]
H A Dstrtoupper1.phpt69 var_dump( strtoupper("a", "b") ); /* Arguments > Expected */
86 0b => 0b
102 1b => 1b
118 2b => 2b
134 3b => 3b
150 4b => 4b
166 5b => 5b
182 6b => 4b
198 7b => 7b
H A Dstrpbrk_error.phpt27 var_dump( strpbrk($haystack, array('a', 'b', 'c') ) );
28 var_dump( strpbrk(array('foo', 'bar'), 'b') );
H A Dstrpos.phpt57 'b',
192 var_dump( strpos("a", "b", "c", "d") ); // args > expected
242 Position of 'b' is => int(49)
H A Dstrip_tags_variation10.phpt25 '<b>This is \ta text in bold letters\r\s\malong with slashes\n</b>'
28 $quotes = "<html><a><p><b><?php";
54 string(65) "<b>This is \ta text in bold letters\r\s\malong with slashes\n</b>"
H A Dstrip_tags_variation9.phpt24 "<b>This is \ta text in bold letters\r\s\malong with slashes\n</b>"
27 $quotes = "<html><a><p><b><?php";
53 string(62) "<b>This is a text in bold letters
55 </b>"
H A Dstrnatcasecmp_variation1.phpt22 class b
31 $b = new b();
33 function str_dump($a, $b) {
34 var_dump(strnatcasecmp($a, $b));
44 str_dump($a, $b);
H A Dstrip_tags_basic1.phpt26 "<html><b>hello</b><p>world</p></html>",
27 '<html><b>hello</b><p>world</p></html>',
H A Dstrip_tags_basic2.phpt15 $string = "<html><p>hello</p><b>world</b><a href=\"#fragment\">Other text</a></html><?php echo hell…
H A Dstrip_tags_variation5.phpt33 <b>This is a double quoted string</b>
46 <p>string</p> 1111\t <b>0000\t = 0000\n</b>
H A Dstrip_tags_variation6.phpt22 b"<a>I am html string</a>",
H A Dstripslashes_variation4.phpt21 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar")),
23 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array(""))),
24 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array("fo\\'o", "b\\'ar")))
69 string(4) "b'ar"
75 string(4) "b'ar"
84 string(4) "b'ar"
97 string(4) "b'ar"
103 string(4) "b'ar"
117 string(4) "b'ar"
123 string(4) "b'ar"
[all …]
H A Dstristr_basic.phpt16 var_dump( bin2hex(stristr(b"te".chr(0).b"St", chr(0))) );
H A Dstr_replace_variation3.phpt18 var_dump( str_replace(array("a", "a", "b"),
24 var_dump( str_replace(array("a", "a", "b"),
67 var_dump(str_replace(array("a", "a", "b"), "multi", "aaa", $count));
70 var_dump(str_replace( array("a", "a", "b"),
77 var_dump(str_replace( array("a", "a", "b"),

Completed in 69 milliseconds

1...<<11121314151617181920>>...96