Home
last modified time | relevance | path

Searched refs:b (Results 551 – 575 of 2383) sorted by relevance

1...<<21222324252627282930>>...96

/PHP-5.5/ext/phar/tests/
H A Dphar_oo_006.phpt34 echo $phar['b/c.php']->getFilename() . "\n";
35 echo $phar['b.php']->getFilename() . "\n";
48 MyFile::__construct(phar://%s/b/c.php)
50 MyFile::__construct(phar://%s/b.php)
51 b.php
H A D018U.phpt14 $file = b"<?php
20 $files['b/a'] = 'b';
35 unicode(1) "b"
H A Dpharfileinfo_setmetadata.phpt14 $phar['a/b'] = 'hi there';
17 $b = $phar['a/b'];
30 $b->setMetadata('hi');
35 $b->delMetadata();
40 $b->setMetadata(1,2,3);
H A Dphar_gzip.phpt42 $b = new Phar($fname2);
43 var_dump($b->isFileFormat(Phar::PHAR));
44 var_dump($b->isCompressed() == Phar::GZ);
46 $b = stat($pname2 . '/test');
47 if ($a['mtime'] != $b['mtime']) {
48 echo "timestamp changed, was $a[mtime], now $b[mtime]!\n";
H A Dphar_oo_008.phpt93 1=>2,a,b
98 1=>2,a,b
102 0=>2|a|b
106 1=>2|a|b
110 1=>2|a|b
116 3=>2|a|b
/PHP-5.5/ext/standard/tests/array/
H A Dbug24980.phpt18 $a = array("a", "b", "c");
19 function foo ($a, $b)
21 return $a . $b;
38 $b = array_reduce($a, "rsum");
42 var_dump($b, $c, $d);
/PHP-5.5/Zend/tests/
H A Dclosure_014.phpt34 $a = $b = $c = $d = 1;
38 $e =& $x->__invoke($b);
40 var_dump($b);
41 $x($b);
42 $x->__invoke($b);
H A Dgc_015.phpt9 $b = $a;
11 $a->b = "xxx";
14 unset($b);
H A D025.phpt13 $b = 'a';
19 foo::$$b();
23 $class::$$b();
H A Dgc_014.phpt9 $b =& $a;
12 unset($b);
13 $a->b = "xxx";
H A Dbug31098.phpt6 var_dump(isset($a->b));
8 var_dump(isset($a->b));
10 var_dump(isset($a->b));
12 var_dump(isset($a['b']));
14 var_dump(isset($a['b']));
16 var_dump(isset($a['b']));
/PHP-5.5/ext/mbstring/tests/
H A Dmb_substr_count.phpt20 $b = "������";
21 var_dump(@mb_substr_count($a, $b));
25 mb_convert_encoding($b, $to_enc), $to_enc));
29 mb_convert_encoding($b, $to_enc), $to_enc));
/PHP-5.5/ext/standard/tests/strings/
H A Dhtmlspecialchars.phpt12 var_dump( bin2hex( htmlspecialchars(b"chr($i)") ) );
24 var_dump( htmlspecialchars("<br>Testing<p>New file.</p><p><br>File <b><i><u>WORKS!!!</i></u></b></p…
32 $str = "A 'quote' is <b>bold</b>";
314 …;New file.&lt;/p&gt;&lt;p&gt;&lt;br&gt;File &lt;b&gt;&lt;i&gt;&lt;u&gt;WORKS!!!&lt;/i&gt;&lt;/u&gt…
320 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
321 string(46) "A &#039;quote&#039; is &lt;b&gt;bold&lt;/b&gt;"
322 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
323 string(36) "A 'quote' is &lt;b&gt;bold&lt;/b&gt;"
/PHP-5.5/ext/standard/tests/file/
H A Dbug55124.phpt7 mkdir('a/./b', 0755, true);
8 if (is_dir('a/b')) {
9 rmdir('a/b');
/PHP-5.5/ext/phar/tests/files/
H A Dfrontcontroller5.phar6 v���������������������a.php����b�H�������������a.jpg����b�H�������������a.phps����
/PHP-5.5/ext/date/tests/
H A Dbug46108.phpt13 [%u|b%"date"]=>
15 [%u|b%"timezone_type"]=>
17 [%u|b%"timezone"]=>
/PHP-5.5/tests/lang/
H A D041.phpt6 public static $b = 'foo';
12 echo $classname::$b."\n";
13 echo $wrongClassname::$b."\n";
H A Dexecution_order.phpt14 $b = "good";
16 $c = $a.($a=$b);
21 $b = "good";
22 $c = ($a=$b).$a;
114 $b = 200;
116 echo $a + ($a=$b);
120 $b = 200;
122 echo ($a=$b) + $a;
/PHP-5.5/ext/opcache/tests/
H A Dbug69038.phpt25 function b($b = "bad") {
39 return $b;
41 var_dump(b());
/PHP-5.5/ext/spl/tests/
H A Dspl_pq_top_basic.phpt1 --TEST--
2 SPL: SplPriorityQueue: top and extract flags
3 --CREDITS--
4 Nathaniel McHugh nat@fishtrap.co.uk
5 #testfest London 2009-05-09
6 --FILE--
7 <?php
8
9 $priorityQueue = new SplPriorityQueue();
10
[all …]
H A DarrayObject_setIteratorClass_error1.phpt6 $ao = new ArrayObject(array('a'=>1,'b'=>2,'c'=>3));
16 $ao = new ArrayObject(array('a'=>1,'b'=>2,'c'=>3));
27 $ao = new ArrayObject(array('a'=>1,'b'=>2,'c'=>3), 0, "nonExistentClass");
36 $ao = new ArrayObject(array('a'=>1,'b'=>2,'c'=>3), 0, "stdClass");
48 b=>2
53 b=>2
/PHP-5.5/ext/json/tests/
H A Dbug54058.phpt18 $b = new stdclass;
19 $b->foo = $bad_utf8;
20 $b->bar = 1;
21 json_encode($b);
/PHP-5.5/ext/mysql/tests/
H A D002.phpt47 [%u|b%"col1"]=>
49 [%u|b%"col2"]=>
51 [%u|b%"col3"]=>
55 [%u|b%"col1"]=>
57 [%u|b%"col2"]=>
59 [%u|b%"col3"]=>
/PHP-5.5/ext/tokenizer/tests/
H A Dtoken_get_all_variation6.phpt22 $a = 2, $b = 4;
24 $b = $b >> 2;
26 var_dump($b);
99 string(2) "$b"
235 string(2) "$b"
264 string(2) "$b"
366 string(2) "$b"
/PHP-5.5/ext/reflection/tests/
H A Dproperty_exists.phpt9 protected $b = 2;
99 obj(A)::$b
110 obj(A)::$b
121 A::$b
132 A::$b
143 B::$b
154 B::$b
165 C::$b
176 C::$b
187 obj(C)::$b
[all …]

Completed in 49 milliseconds

1...<<21222324252627282930>>...96