/PHP-5.5/ext/phar/tests/ |
H A D | phar_oo_compressed_001b.phpt | 17 $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()); 56 string(1) "b" 62 string(5) "new b"
|
H A D | phar_oo_uncompressall.phpt | 17 $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)); 46 var_dump(file_get_contents($pname . '/b')); 61 string(1) "b" 68 string(1) "b" [all …]
|
H A D | 023.phpt | 15 $files['b.php'] = '<?php echo "This is b\n"; ?>'; 16 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>'; 21 var_dump(file_get_contents($pname . '/b.php')); 22 var_dump(file_get_contents($pname . '/b/c.php')); 30 string(28) "<?php echo "This is b\n"; ?>" 31 string(30) "<?php echo "This is b/c\n"; ?>"
|
H A D | 019c.phpt | 20 $files['b/a'] = 'b'; 21 $files['b/c/d'] = 'c'; 59 string(2) "/b" 61 string(12) "phar://hio/b" 62 string(4) "/b/a" 64 string(1) "b" 65 string(4) "/b/c" 67 string(14) "phar://hio/b/c" 68 string(6) "/b/c/d"
|
/PHP-5.5/ext/mbstring/tests/ |
H A D | mb_ereg4.phpt | 11 $a = -1; $b = -1; $c = -1; 12 mbereg($a, $b, $c); 13 var_dump($a, $b, $c); 15 mberegi($a, $b, $c); 16 var_dump($a, $b, $c); 18 mbereg_search_init($a, $b, $c); 19 var_dump($a, $b, $c);
|
H A D | mb_ereg3.phpt | 11 $a = -1; $b = -1; $c = -1; 12 mbereg($a, $b, $c); 13 var_dump($a, $b, $c); 15 mberegi($a, $b, $c); 16 var_dump($a, $b, $c); 18 mbereg_search_init($a, $b, $c); 19 var_dump($a, $b, $c);
|
H A D | mb_ereg_variation4.phpt | 26 $character_classes = array (b'[[:alnum:]]+', /*1*/ 27 b'[[:alpha:]]+', 28 b'[[:ascii:]]+', 29 b'[[:blank:]]+', 30 b'[[:cntrl:]]+',/*5*/ 31 b'[[:digit:]]+', 32 b'[[:graph:]]+', 33 b'[[:lower:]]+', 34 b'[[:print:]]+', 36 b'[[:space:]]+', [all …]
|
/PHP-5.5/Zend/tests/ |
H A D | bug48215_2.phpt | 9 class b extends a {} 10 class c extends b { 12 b::b(); 19 Fatal error: Call to undefined method b::b() in %s on line %d
|
H A D | inter_03.phpt | 7 const b = 2; 10 interface b extends a { 11 const c = self::b; 14 var_dump(b::c, a::b);
|
H A D | class_alias_001.phpt | 11 $b = new bar; 13 var_dump($a == $b, $a === $b); 14 var_dump($a instanceof $b); 19 var_dump($b instanceof foo); 20 var_dump($b instanceof bar);
|
H A D | foreach_temp_array_expr_with_refs.phpt | 7 $b = 'b'; 9 foreach ([&$a, &$b] as &$value) { 13 var_dump($a, $b); 18 string(5) "b-foo"
|
/PHP-5.5/tests/lang/ |
H A D | short_tags.004.phpt | 17 <? $b=3; ?> 20 echo "{$b}"; 22 <?= "{$b}"?> 30 <? $b=3; ?> 33 Notice: Undefined variable: b in %s on line %d 35 Notice: Undefined variable: b in %s on line %d
|
H A D | foreachLoopObjects.002.phpt | 8 public $b = "Original b"; 63 public $b = "Overridden b"; 183 ["b"]=> 208 ["b"]=> 229 ["b"]=> 258 ["b"]=> 283 ["b"]=> 304 ["b"]=> 333 ["b"]=> 350 ["b"]=> [all …]
|
/PHP-5.5/ext/standard/tests/array/ |
H A D | bug48854.phpt | 27 [%u|b%"friends"]=> 29 [%u|b%"children"]=> 31 [%u|b%"dogs"]=> 36 [%u|b%"friends"]=> 38 [%u|b%"children"]=> 40 [%u|b%"cats"]=>
|
H A D | array_merge_recursive_variation9.phpt | 20 $arr1 = array("a" => 1, "b" => 2); 21 $arr2 = array("b" => 2, "c" => 4); 26 $arr1 = array("a" => 1.1, "b" => 2.2); 27 $arr2 = array("b" => 2.2, "c" => 3.3); 32 $arr1 = array("a" => "hello", "b" => "world"); 38 $arr1 = array("a" => true, "b" => false); 39 $arr2 = array("b" => false); 57 ["b"]=> 71 ["b"]=> 85 ["b"]=> [all …]
|
H A D | bug29493.phpt | 10 $b = $a; 13 $b['foo'] = 'bbb'; 17 var_dump($a, $b); 23 var_dump($a, $b); 31 $b = &$a; 35 $b['foo'] = 'bbb'; 39 var_dump($a, $b); 45 var_dump($a, $b); 53 $b = &$a; 57 unset($b);
|
/PHP-5.5/ext/openssl/tests/ |
H A D | 003.phpt | 14 $b = 1; 18 var_dump(openssl_pkcs7_decrypt($a, $b, $c, $d)); 21 var_dump(openssl_pkcs7_decrypt($b, $b, $b, $b)); 22 var_dump(openssl_pkcs7_decrypt($a, $b, "", "")); 23 var_dump(openssl_pkcs7_decrypt($a, $b, true, false)); 24 var_dump(openssl_pkcs7_decrypt($a, $b, 0, 0));
|
/PHP-5.5/ext/standard/tests/class_object/ |
H A D | get_object_vars_basic_002.phpt | 14 public function testA($b) { 16 var_dump(get_object_vars($b)); 26 public function testB($b) { 28 var_dump(get_object_vars($b)); 33 $b = new B; 35 $b->testB($b); 37 $b->testA($b);
|
/PHP-5.5/ext/standard/tests/strings/ |
H A D | htmlentities23.phpt | 43 string(16) "262378464646443b" 45 string(16) "262378464646443b" 48 string(16) "262378464646443b" 50 string(16) "262378464646443b" 68 string(16) "262378464646443b" 70 string(16) "262378464646443b" 78 string(16) "262378464646443b" 80 string(16) "262378464646443b" 83 string(16) "262378464646443b" 85 string(16) "262378464646443b" [all …]
|
/PHP-5.5/ext/simplexml/tests/ |
H A D | bug66084_0.phpt | 7 echo var_dump(simplexml_load_string('<a><b/><c><x/></c></a>')), "\n"; 8 echo var_dump(simplexml_load_string('<a><b/><d/><c><x/></c></a>')), "\n"; 9 echo var_dump(simplexml_load_string('<a><b/><c><d/><x/></c></a>')), "\n"; 10 echo var_dump(simplexml_load_string('<a><b/><c><d><x/></d></c></a>')), "\n"; 14 ["b"]=> 26 ["b"]=> 41 ["b"]=> 56 ["b"]=>
|
/PHP-5.5/ext/spl/tests/ |
H A D | SplDoublyLinkedList_serialization.phpt | 8 $q->enqueue("b"); 15 $s->push("b"); 29 string(1) "b" 32 string(42) "C:8:"SplQueue":22:{i:4;:s:1:"a";:s:1:"b";}" 41 string(1) "b" 52 string(1) "b" 55 string(42) "C:8:"SplStack":22:{i:6;:s:1:"a";:s:1:"b";}" 64 string(1) "b"
|
/PHP-5.5/ext/mysqli/tests/ |
H A D | mysqli_fetch_field_direct.phpt | 51 [%u|b%"name"]=> 53 [%u|b%"orgname"]=> 55 [%u|b%"table"]=> 57 [%u|b%"orgtable"]=> 59 [%u|b%"def"]=> 61 [%u|b%"db"]=> 63 [%u|b%"catalog"]=> 67 [%u|b%"length"]=> 71 [%u|b%"flags"]=> 73 [%u|b%"type"]=> [all …]
|
/PHP-5.5/ext/phar/tests/zip/ |
H A D | open_for_write_newfile_c.phpt | 23 $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'); 34 fwrite($fp, b'extra'); 37 include $alias . '/b/c.php'; 38 include $alias . '/b/new.php'; 46 Warning: fopen(phar://%sopen_for_write_newfile_c.phar.zip/b/new.php): failed to open stream: phar e… 51 This is b/c 53 … include(phar://%sopen_for_write_newfile_c.phar.zip/b/new.php): failed to open stream: phar error:… 55 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c.phar.zip/b/new.php' for inclu…
|
H A D | phar_oo_compressallgz.phpt | 15 $phar['b'] = 'b'; 20 var_dump(file_get_contents($pname . '/b')); 21 var_dump($phar['b']->isCompressed()); 29 var_dump(file_get_contents($pname . '/b')); 30 var_dump($phar['b']->isCompressed(Phar::BZ2)); 31 var_dump($phar['b']->isCompressed(Phar::GZ)); 33 var_dump($phar['b']->isCompressed(Phar::BZ2)); 45 string(1) "b" 52 string(1) "b"
|
/PHP-5.5/ext/phar/tests/tar/ |
H A D | open_for_write_newfile_c_5_2.phpt | 21 $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'); 32 fwrite($fp, b'extra'); 34 include $alias . '/b/c.php'; 35 include $alias . '/b/new.php'; 44 Warning: fopen(phar://%sopen_for_write_newfile_c_5_2.phar.tar/b/new.php): failed to open stream: ph… 49 This is b/c 51 …lude(phar://%sopen_for_write_newfile_c_5_2.phar.tar/b/new.php): failed to open stream: phar error:… 53 Warning: include(): Failed opening 'phar://%sopen_for_write_newfile_c_5_2.phar.tar/b/new.php' for i…
|