Home
last modified time | relevance | path

Searched refs:b (Results 201 – 225 of 2216) sorted by relevance

12345678910>>...89

/PHP-7.2/ext/phar/tests/
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"
H A Dopendir_edgecases.phpt23 while (false !== ($b = readdir($a))) {
24 $arr[] = $b;
27 foreach ($arr as $b) {
28 echo "$b\n";
37 while (false !== ($b = readdir($a))) {
38 $res[] = $b;
41 foreach ($res as $b) {
42 echo "$b\n";
/PHP-7.2/ext/simplexml/tests/
H A Dbug67116.phpt14 <b>b</b>
16 <cs><c>b</c></cs>
33 [b] => b
38 [c] => b
H A Dbug69169.phpt10 <root a="b">
11 <row b="y">
18 $b = str_replace(array("\n", "\r", "\t"), "", $a);
19 $simple_xml = simplexml_load_string($b);
27 [a] => b
36 [b] => y
/PHP-7.2/ext/standard/tests/strings/
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 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 Dvsprintf_basic4.phpt14 $format1 = "%b";
15 $format2 = "%b %b";
16 $format3 = "%b %b %b";
/PHP-7.2/Zend/tests/bug67436/
H A Dbug67436.phpt9 if (in_array($classname, array('a','b','c'))) {
19 $b = new b();
20 $b->test();
22 b::test()
/PHP-7.2/Zend/tests/
H A Dbug72543.phpt12 $copy['b']['z']['z'] = $copy['b'];
17 'b' => [],
31 ["b"]=>
36 ["b"]=>
H A Dbug68446.phpt12 function b(array $b = BAR) {
13 var_dump($b);
16 b(null);
17 b([]);
18 b();
H A Dcall_static_007.phpt7 public function __call($a, $b) {
10 static public function __callStatic($a, $b) {
21 $b = 'Test';
22 $a::$b();
23 $a->$b();
H A Dbug48533.phpt10 public function b() {
16 static function __callstatic($a, $b) {
19 public function __call($a, $b) {
26 $x->b();
29 $x::b();
39 Deprecated: Non-static method foo::b() should not be called statically in %s on line %d
H A Ddereference_001.phpt12 function b() {
15 var_dump(b()[0]); // Notice: Undefined offset: 0
34 var_dump(d()[0][0][0][3]); // string(1) "b"
38 $x = array('a' => 'foo', 'b' => $y);
41 var_dump(e()['b']); // string(3) "bar"
50 string(1) "b"
/PHP-7.2/tests/lang/
H A DforeachLoopObjects.004.phpt8 public $b = "Original b";
18 if ($v==$obj->b) {
19 unset($obj->b);
35 string(10) "Original b"
37 Notice: Undefined property: C::$b in %s on line %d
40 Notice: Undefined property: C::$b in %s on line %d
43 Notice: Undefined property: C::$b in %s on line %d
H A DforeachLoop.004.phpt6 $a=array("a", "b", "c");
15 $a=array("a", "b", "c");
30 string(1) "b"
40 string(1) "b"
57 string(1) "b"
68 string(1) "b"
/PHP-7.2/tests/classes/
H A Dtype_hinting_001.phpt11 function b(Bar $bar);
19 function b(Bar $bar) {
28 $b = new Blort;
30 $a->a($b);
31 $a->b($b);
/PHP-7.2/ext/standard/tests/serialize/
H A Dserialization_objects_002.phpt33 $this->b = "string";
47 $this->b = $x;
94 ["b"]=>
144 ["b"]=>
163 ["b"]=>
178 After Serialization => string(100) "O:1:"D":8:{s:1:"a";b:1;s:1:"b";b:1;s:1:"c";b:0;s:1:"d";b:0;s:1:…
182 ["b"]=>
201 ["b"]=>
221 ["b"]=>
274 ["b"]=>
[all …]
H A Dbug64146.phpt21 public $b;
25 $this->b = new C($c);
30 return serialize(clone $this->b);
35 $this->b = unserialize($data);
51 print $a->a[0]->b->c . "\n";
52 print $a->a[1]->b->c . "\n";
/PHP-7.2/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
74 r = g = b = (int) (.299 * r + .587 * g + .114 * b); in gdImageGrayScale()
92 int r,g,b,a; in gdImageBrightness() local
117 b = b + brightness; in gdImageBrightness()
121 b = (b > 255)? 255 : ((b < 0)? 0:b); in gdImageBrightness()
137 int r,g,b,a; in gdImageContrast() local
167 bf = (double)b/255.0; in gdImageContrast()
209 int r,g,b,a; in gdImageColor() local
219 b = b + blue; in gdImageColor()
[all …]
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput5110 0: b
389 b
411 b
420 b
442 b
464 b
662 0: a\x{0b}b
686 0: a\x{0b}b
704 0: a\x{0b}b
864 0: a\x{0b}b
[all …]
H A Dwintestinput319 /[\b]/
20 \b
24 /[\b]/Lfrench
25 \b
36 /(.+)\b(.+)/
39 /(.+)\b(.+)/Lfrench
/PHP-7.2/ext/fileinfo/tests/
H A Dmagic536 >>11 byte b \b C.S0050-0-A V1.0.0
2382 >>>>>(10.b-4) string x \b.%.3s
2728 >>(21.b+24) ubyte <0x21 \b, 0x%x OS
2730 >>(21.b+24) ubyte >0x20 \b, '%c' OS
5688 0 string/b x
7047 #>>>>>>>>>>>>(26.b+548) string x \b, 2nd tag "%.11s"
17752 # UNDELETE.COM 8cca 2e8916 6503 b430 cd21 8b 2e0200 8b
17753 # BOOTFIX.COM 8cca 2e8916 9603 b430 cd21 8b 2e0200 8b
17754 # RAWRITE3.COM 8cca 2e8916 d602 b430 cd21 8b 2e0200 8b
17755 # SHARE.COM 8cca 2e8916 d602 b430 cd21 8b 2e0200 8b
[all …]
H A Dmagic私はガラスを食べられます536 >>11 byte b \b C.S0050-0-A V1.0.0
2382 >>>>>(10.b-4) string x \b.%.3s
2728 >>(21.b+24) ubyte <0x21 \b, 0x%x OS
2730 >>(21.b+24) ubyte >0x20 \b, '%c' OS
5688 0 string/b x
7047 #>>>>>>>>>>>>(26.b+548) string x \b, 2nd tag "%.11s"
17752 # UNDELETE.COM 8cca 2e8916 6503 b430 cd21 8b 2e0200 8b
17753 # BOOTFIX.COM 8cca 2e8916 9603 b430 cd21 8b 2e0200 8b
17754 # RAWRITE3.COM 8cca 2e8916 d602 b430 cd21 8b 2e0200 8b
17755 # SHARE.COM 8cca 2e8916 d602 b430 cd21 8b 2e0200 8b
[all …]
/PHP-7.2/ext/standard/tests/array/
H A Dcompact_basic.phpt18 $b=0.2;
25 var_dump (compact(array("a", "b", "c", "d", "e", "f")));
27 var_dump (compact("a", "b", "c", "d", "e", "f"));
28 var_dump (compact(array("keyval"=>"a", "b"=>"b", "c"=>1)));
42 ["b"]=>
59 ["b"]=>
76 ["b"]=>
/PHP-7.2/ext/spl/tests/
H A Dspl_003.phpt11 class b extends a{}
12 class c extends b{}
16 class_parents(new b),
17 class_parents("b"),
41 ["b"]=>
42 string(1) "b"
47 ["b"]=>
48 string(1) "b"

Completed in 360 milliseconds

12345678910>>...89