Home
last modified time | relevance | path

Searched refs:b (Results 226 – 250 of 2383) sorted by relevance

12345678910>>...96

/PHP-5.5/tests/lang/
H A D007.phpt11 global $b;
13 $b = 5;
14 echo "$a $b ";
21 echo "$a $b $c ";
23 echo "$a $b $c ";
/PHP-5.5/ext/phar/tests/
H A Dphar_oo_compressallbz2.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));
53 string(1) "b"
60 string(1) "b"
H A Dopen_for_write_newfile_b.phpt19 $files['b.php'] = '<?php echo "This is b\n"; ?>';
20 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
29 $fp = fopen($pname . '/b/new.php', 'wb');
32 include $pname . '/b/c.php';
33 include $pname . '/b/new.php';
41 Warning: fopen(phar://%sopen_for_write_newfile_b.phar.php/b/new.php): failed to open stream: phar e…
46 This is b/c
48 … include(phar://%sopen_for_write_newfile_b.phar.php/b/new.php): failed to open stream: phar error:…
50 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_b.phar.php/b/new.php' for inclu…
H A Dopen_for_write_newfile_b_5_2.phpt17 $files['b.php'] = '<?php echo "This is b\n"; ?>';
18 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
27 $fp = fopen($pname . '/b/new.php', 'wb');
30 include $pname . '/b/c.php';
31 include $pname . '/b/new.php';
39 Warning: fopen(phar://%sopen_for_write_newfile_b_5_2.phar.php/b/new.php): failed to open stream: ph…
44 This is b/c
46 …lude(phar://%sopen_for_write_newfile_b_5_2.phar.php/b/new.php): failed to open stream: phar error:…
48 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_b_5_2.phar.php/b/new.php' for i…
H A Dopen_for_write_existing.phpt16 $files['b.php'] = '<?php echo "This is b\n"; ?>';
17 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
20 $fp = fopen($pname . '/b/c.php', 'wb');
21 fwrite($fp, b'extra');
23 include $pname . '/b/c.php';
H A D027U.phpt14 $file = b"<?php __HALT_COMPILER(); ?>";
17 $files['a.php'] = '<?php echo "This is a\n"; require \''.$pname.'/b.php\'; ?>';
18 $files['b.php'] = '<?php echo "This is b\n"; require \''.$pname.'/b/c.php\'; ?>';
19 $files['b/c.php'] = '<?php echo "This is b/c\n"; require \''.$pname.'/b/d.php\'; ?>';
20 $files['b/d.php'] = '<?php echo "This is b/d\n"; require \''.$pname.'/e.php\'; ?>';
53 var_dump(fwrite($a, b'hi'));
67 unicode(2) "/b"
69 unicode(%d) "phar://*/027U.phar.php/b"
70 unicode(8) "/b/c.php"
72 unicode(8) "/b/d.php"
[all …]
H A D019b.phpt20 $files['b/a'] = 'b';
21 $files['b/c/d'] = 'c';
54 string(2) "/b"
56 string(12) "phar://hio/b"
57 string(4) "/b/a"
59 string(4) "/b/c"
61 string(14) "phar://hio/b/c"
62 string(6) "/b/c/d"
H A Dphar_oo_compressallgz.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));
57 string(1) "b"
64 string(1) "b"
/PHP-5.5/ext/standard/tests/strings/
H A Dbug44703.phpt6 var_dump(htmlspecialchars(b"<a href='test'>Test</a>", ENT_COMPAT, 1));
7 var_dump(htmlspecialchars(b"<a href='test'>Test</a>", ENT_COMPAT, 12));
8 var_dump(htmlspecialchars(b"<a href='test'>Test</a>", ENT_COMPAT, 125));
9 var_dump(htmlspecialchars(b"<a href='test'>Test</a>", ENT_COMPAT, 1252));
10 var_dump(htmlspecialchars(b"<a href='test'>Test</a>", ENT_COMPAT, 12526));
12 var_dump(htmlspecialchars(b"<>", ENT_COMPAT, 866));
13 var_dump(htmlspecialchars(b"<>", ENT_COMPAT, 8666));
15 var_dump(htmlspecialchars(b"<>", ENT_COMPAT, NULL));
18 var_dump(htmlspecialchars(b"<>", ENT_COMPAT, 'SJIS'));
19 var_dump(htmlspecialchars(b"<>", ENT_COMPAT, 'SjiS'));
[all …]
H A Dbug22008.phpt12 <b>PHP!</b>
18 echo trim(strip_tags($html, '<b>'))."\n";
24 <b>PHP!</b>
/PHP-5.5/ext/gd/libgd/
H A Dgd_filter.c19 int r,g,b,a; in gdImageNegate() local
52 int r,g,b,a; in gdImageGrayScale() local
69 r = g = b = (int) (.299 * r + .587 * g + .114 * b); in gdImageGrayScale()
85 int r,g,b,a; in gdImageBrightness() local
110 b = b + brightness; in gdImageBrightness()
114 b = (b > 255)? 255 : ((b < 0)? 0:b); in gdImageBrightness()
130 int r,g,b,a; in gdImageContrast() local
160 bf = (double)b/255.0; in gdImageContrast()
202 int r,g,b,a; in gdImageColor() local
212 b = b + blue; in gdImageColor()
[all …]
/PHP-5.5/ext/hash/
H A Dhash_ripemd.c214 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
221 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
228 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
235 a = d; d = c; c = b; b = tmp; in RIPEMD128Transform()
305 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
313 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
317 tmp = b; b = bb; bb = tmp; in RIPEMD256Transform()
321 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
329 a = d; d = c; c = b; b = tmp; in RIPEMD256Transform()
403 a = e; e = d; d = ROL(10, c); c = b; b = tmp; in RIPEMD160Transform()
[all …]
/PHP-5.5/ext/simplexml/tests/
H A Dbug41867.phpt8 $a = simplexml_load_string("<a><b><c/></b></a>");
10 echo $a->b->getName()."\n";
11 echo $a->b->c->getName()."\n";
16 b
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_get_client_stats.phpt962 [%u|b%"bytes_sent"]=>
1068 [%u|b%"reconnect"]=>
1220 [%u|b%"com_quit"]=>
1222 [%u|b%"com_init_db"]=>
1224 [%u|b%"com_query"]=>
1230 [%u|b%"com_drop_db"]=>
1232 [%u|b%"com_refresh"]=>
1244 [%u|b%"com_debug"]=>
1246 [%u|b%"com_ping"]=>
1248 [%u|b%"com_time"]=>
[all …]
/PHP-5.5/ext/phar/tests/zip/
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');
35 include $alias . '/b/c.php';
36 include $alias . '/b/new.php';
44 Warning: fopen(phar://%sopen_for_write_newfile_c_5_2.phar.zip/b/new.php): failed to open stream: ph…
49 This is b/c
51 …lude(phar://%sopen_for_write_newfile_c_5_2.phar.zip/b/new.php): failed to open stream: phar error:…
53 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c_5_2.phar.zip/b/new.php' for i…
/PHP-5.5/ext/phar/tests/tar/
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');
36 include $alias . '/b/c.php';
37 include $alias . '/b/new.php';
46 Warning: fopen(phar://%sopen_for_write_newfile_c.phar.tar/b/new.php): failed to open stream: phar e…
51 This is b/c
53 … include(phar://%sopen_for_write_newfile_c.phar.tar/b/new.php): failed to open stream: phar error:…
55 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c.phar.tar/b/new.php' for inclu…
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput81783 /^a b
1852 b
1857 b
1862 b
2338 /a.b/
2601 b
2607 b
2621 b
2932 /$b/
3624 /(?:c|d)(?:)(?:a(?:)(?:b)(?:b(?:))(?:b(?:)(?:b)))/
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dbase64.h20 void buffer_new(struct buffer_st *b);
21 void buffer_add(struct buffer_st *b, char c);
22 void buffer_delete(struct buffer_st *b);
24 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length);
25 void base64_decode_xmlrpc(struct buffer_st *b, const char *source, int length);
/PHP-5.5/ext/standard/tests/array/
H A Dbug42838.phpt6 function key_compare_func($a, $b)
8 if ($a === $b) {
11 return ($a > $b)? 1:-1;
14 $array1 = array("a" => "green", "b" => "Brown", 'c' => 'blue', 0 => 'red');
15 $array2 = array("a" => "green", "b" => "Brown", 'c' => 'blue', 0 => 'red');
H A Darray_key_exists_object1.phpt22 function __construct($a, $b, $c = null) {
24 $this->var2 = $b;
32 $class1 = new myClass ('a', 'b');
60 [%b|u%"var1"]=>
62 [%b|u%"var2"]=>
63 %unicode|string%(1) "b"
64 [%b|u%"var3"]=>
73 [%b|u%"var1"]=>
75 [%b|u%"var2"]=>
77 [%b|u%"var3"]=>
/PHP-5.5/tests/basic/
H A Drfc1867_missing_boundary_2.phpt22 [%u|b%"file1"]=>
24 [%u|b%"name"]=>
26 [%u|b%"type"]=>
28 [%u|b%"tmp_name"]=>
30 [%u|b%"error"]=>
32 [%u|b%"size"]=>
/PHP-5.5/ext/pdo/tests/
H A Dbug_38394.phpt18 $db->exec("CREATE TABLE test (a INT, b INT, c INT)");
19 $s = $db->prepare("INSERT INTO test (a,b,c) VALUES (:a,:b,:c)");
21 $s->execute(array('a' => 1, 'b' => 2, 'c' => 3));
23 @$s->execute(array('a' => 5, 'b' => 6, 'c' => 7, 'd' => 8));
25 $s->execute(array('a' => 9, 'b' => 10, 'c' => 11));
36 ["b"]=>
45 ["b"]=>
/PHP-5.5/Zend/tests/
H A Dclosure_038.phpt26 $b = new B(10);
33 $cb = $ca->bindTo($b, $b);
34 $cb2 = Closure::bind($ca, $b, $b);
40 $cb = $ca->bindTo($b, 'B');
41 $cb2 = Closure::bind($ca, $b, 'B');
45 $cb = $ca->bindTo($b, NULL);
H A Dclosure_039.phpt26 $b = new B(10);
33 $cb = $ca->bindTo($b, $b);
34 $cb2 = Closure::bind($ca, $b, $b);
40 $cb = $ca->bindTo($b, 'B');
41 $cb2 = Closure::bind($ca, $b, 'B');
45 $cb = $ca->bindTo($b, NULL);
/PHP-5.5/ext/standard/tests/file/
H A Dbasename_bug66395_variation2-win32.phpt10 echo basename("a:\\b:c:d:hello.txt\\hcd:c.txt") . "\n";
11 echo basename("a:b:c:d:hello.txt\\d:some.txt") . "\n";
12 echo basename("a:b:c:d:hello\world\a.bmp\c:d:e:f.txt") . "\n";
13 echo basename("a:\\b:\\c:d:hello\\world\\a.bmp\\d:e:f:g.txt") . "\n";
14 echo basename("a:\\b:\\c:d:hello/world\\a.bmp\\d:\\e:\\f:g.txt") . "\n";
15 echo basename("a:\\b:/c:d:hello\\world:somestream") . "\n";
16 echo basename("a:\\b:\\c:d:hello\\world:some.stream") . "\n";
17 echo basename("a:/b:\\c:d:hello\\world:some.stream:\$DATA") . "\n";
19 echo basename("a:\\b:\\c:d:hello\\world:c:\$DATA") . "\n";
20 echo basename("a:\\b:\\c:d:hello\\d:world:c:\$DATA") . "\n";

Completed in 81 milliseconds

12345678910>>...96