Home
last modified time | relevance | path

Searched refs:b (Results 126 – 150 of 2264) sorted by relevance

12345678910>>...91

/PHP-7.4/Zend/tests/
H A Dclass_alias_001.phpt11 $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 Dbug53958.phpt16 $b = 1;
17 $fn1 = function() use (&$b) {echo "$b\n"; $b++;};
18 $fn2 = function() use (&$b) {echo "$b\n"; $b++;};
19 $b = 5;
H A Dlist_002.phpt9 $b =& $a;
11 list($a, list($b)) = array($a, array($b));
12 var_dump($a, $b, $a === $b);
H A Dbug39127.phpt7 class b extends a {}
9 $b = new b;
10 var_dump(is_callable(array($b,"a")));
11 var_dump(is_callable(array($b,"b")));
12 var_dump(is_callable(array($b,"__construct")));
H A Dobject-null.phpt10 $b = new Bla;
12 var_dump($b != null);
13 var_dump($b == null);
14 var_dump($b !== null);
15 var_dump($b === null);
H A Dbug73916.phpt6 class b{};
7 $b = new b;
9 $test[] =& $b;
16 #0 test(Array ([0] => Array ([0] => a),[1] => b Object ())) called at [%sbug73916.php:%d]
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_log.c100 char *s, *b; in fpm_log_write() local
144 b = buffer; in fpm_log_write()
171 *b = '%'; in fpm_log_write()
235 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", env ? env : "-"); in fpm_log_write()
262 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%zu", proc.memory); in fpm_log_write()
332 *b = '-'; in fpm_log_write()
395 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", tmp); in fpm_log_write()
402 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", proc.auth_user); in fpm_log_write()
446 b += len2; in fpm_log_write()
459 *b = *s; in fpm_log_write()
[all …]
/PHP-7.4/ext/mbstring/tests/
H A Dmb_ereg2.phpt11 $a = -1; $b = -1; $c = -1;
12 mb_ereg($a, $b, $c);
13 var_dump($a, $b, $c);
15 mb_eregi($a, $b, $c);
16 var_dump($a, $b, $c);
18 mb_ereg_search_init($a, $b, $c);
19 var_dump($a, $b, $c);
/PHP-7.4/ext/phar/tests/
H A Dopen_for_write_newfile.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/new.php', 'wb');
23 include $pname . '/b/c.php';
24 include $pname . '/b/new.php';
31 This is b/c
H A Dpharfileinfo_compression.phpt16 $phar['a/b'] = 'hi there';
18 $b = $phar['a/b'];
20 $b->isCompressed(array());
22 $b->isCompressed(25);
27 $b->compress(25);
33 $c = $tar['a/b'];
46 $b->compress(Phar::GZ);
51 var_dump($b->compress(Phar::GZ));
60 $phar['a/b']->decompress();
70 var_dump($b->decompress());
[all …]
H A Dphar_oo_compressed_001.phpt17 $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::GZ);
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 Dphar_oo_compressed_001b.phpt17 $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 D023.phpt15 $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"; ?>"
/PHP-7.4/tests/lang/
H A Dstatic_variation_001.phpt24 eval(' static $b = array(10,11,12); ');
27 eval(' static $b = array(1,2,3); ');
30 eval(' static $b = array(4,5,6); ');
31 var_dump($b);
34 eval('function g2b() { static $b = array(7, 8, 9); var_dump($b); } ');
35 var_dump($b);
41 var_dump($b);
/PHP-7.4/ext/standard/tests/math/
H A Dfloorceil.phpt5 $a = ceil (-0); $b = ceil (-1); $c = ceil (-1.5);
7 var_dump ($a, $b, $c, $d, $e);
9 $a = ceil (0); $b = ceil (0.5); $c = ceil (1);
11 var_dump ($a, $b, $c, $d, $e, $f);
13 $a = floor (-0); $b = floor (-0.5); $c = floor (-1);
15 var_dump ($a, $b, $c, $d, $e, $f);
17 $a = floor (0); $b = floor (0.5); $c = floor (1);
19 var_dump ($a, $b, $c, $d, $e, $f);
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_pkcs7_decrypt_error.phpt14 $b = 1;
19 var_dump(openssl_pkcs7_decrypt($a, $b, $c, $d));
25 var_dump(openssl_pkcs7_decrypt($b, $b, $b, $b));
26 var_dump(openssl_pkcs7_decrypt($a, $b, "", ""));
27 var_dump(openssl_pkcs7_decrypt($a, $b, true, false));
28 var_dump(openssl_pkcs7_decrypt($a, $b, 0, 0));
/PHP-7.4/ext/pdo_dblib/
H A Dphp_pdo_dblib_int.h31 # define DBERRHANDLE(a, b) dbprocerrhandle(a, b) argument
32 # define DBMSGHANDLE(a, b) dbprocmsghandle(a, b) argument
35 # define DBSETOPT(a, b, c) dbsetopt(a, b, c) argument
80 # define DBERRHANDLE(a, b) dberrhandle(b) argument
81 # define DBMSGHANDLE(a, b) dbmsghandle(b) argument
82 # define DBSETOPT(a, b, c) dbsetopt(a, b, c, -1) argument
/PHP-7.4/ext/zip/tests/
H A Doo_externalattributes.phpt24 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b), $a, $b);
26 var_dump($zip->getExternalAttributesIndex($id, $a, $b), $a, $b);
32 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b), $a, $b);
33 var_dump($zip->getExternalAttributesIndex($id, $a, $b), $a, $b);
35 var_dump($zip->getExternalAttributesName('foo.txt', $a, $b, ZipArchive::FL_UNCHANGED), $a, $b);
36 var_dump($zip->getExternalAttributesIndex($id, $a, $b, ZipArchive::FL_UNCHANGED), $a, $b);
/PHP-7.4/Zend/tests/bug67436/
H A Dbug67436_nohandler.phpt7 if (in_array($classname, array('a','b','c'))) {
14 $b = new b();
15 $b->test();
17 Warning: Declaration of b::test() should be compatible with a::test($arg = c::TESTCONSTANT) in %s%e…
18 b::test()
/PHP-7.4/ext/standard/tests/strings/
H A Dstrspn.phpt6 $b = "1234";
8 var_dump($b);
9 var_dump(strspn($a,$b));
10 var_dump(strspn($a,$b,2));
11 var_dump(strspn($a,$b,2,3));
/PHP-7.4/Zend/tests/generators/
H A Dbug76427.phpt10 $b = new stdclass();
11 $a->b = $b;
12 $b->a = $a;
16 unset($b);
/PHP-7.4/ext/fileinfo/tests/
H A Dbug77961.magic6 >12 string OBJ_ \b, AOF object
7 >12 string LIB_ \b, ALF library
9 0 name mach-o \b [
10 >0 use mach-o-cpu \b
11 >(8.L) indirect 8 \b:
12 >0 belong x \b]
16 >4 byte x \b%d
33 >>>>&0 der prt_str=x \b, countryName=%s
37 >>>>&0 der utf8_str=x \b, stateOrProvinceName=%s
41 >>>>&0 der utf8_str=x \b, organizationName=%s
[all …]
/PHP-7.4/ext/standard/tests/class_object/
H A Dget_object_vars_basic_002.phpt14 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-7.4/ext/simplexml/tests/
H A Dbug66084_0.phpt7 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-7.4/ext/standard/tests/array/
H A Darray_merge.phpt123 [b] => string
186 [b] => string
250 [b] => string
315 [b] => string
352 [b] => string
361 [b] => string
371 [b] => string
381 [b] => string
653 ["b"]=>
697 ["b"]=>
[all …]

Completed in 56 milliseconds

12345678910>>...91