Home
last modified time | relevance | path

Searched refs:bin (Results 1 – 25 of 97) sorted by relevance

1234

/PHP-7.4/ext/sodium/tests/
H A Dcrypto_hex.phpt7 $bin = random_bytes(random_int(1, 1000));
8 $hex = sodium_bin2hex($bin);
9 $phphex = bin2hex($bin);
13 var_dump($bin2 === $bin);
16 var_dump($bin2 === $bin);
/PHP-7.4/tests/security/
H A Dopen_basedir_001.phpt8 if (!is_dir("/usr/local/bin")) {
9 die('skip.. no /usr/local/bin on this machine');
15 var_dump(ini_set("open_basedir", "/usr/local/bin"));
22 string(14) "/usr/local/bin"
24 string(14) "/usr/local/bin"
/PHP-7.4/ext/opcache/tests/
H A Dbug78185.phpt13 $pattern = __DIR__ . '/*/' . __DIR__ . '/*78185.php.bin';
15 $pattern = __DIR__ . '/*/*/' . str_replace(':', '', __DIR__) . '/*78185.php.bin';
24 $pattern = __DIR__ . '/*/' . __DIR__ . '/*78185.php.bin';
26 $pattern = __DIR__ . '/*/*/' . str_replace(':', '', __DIR__) . '/*78185.php.bin';
38 string(%d) "%s78185.php.bin"
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_bit.phpt28 $bin = '';
31 $bin .= '1';
34 $bin .= '0';
37 return $bin;
78 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
79 $sql = sprintf("INSERT INTO test(id, bit_value) VALUES (%s, b'%s')", $value, $bin);
80 for ($i = 0; ($i < strlen($bin)) && ($bin[$i] == '0'); $i++)
82 $bin2 = substr($bin, $i, strlen($bin));
100 if (($value != $row['id']) || (($bin != $row['_bin']) && ($bin2 != $row['_bin']))) {
103 $bits, $value, $bits, $row['id'], $row['_bin'], $bin, $bin2);
[all …]
H A Dmysqli_fetch_assoc_bit.phpt25 $bin = '';
28 $bin .= '1';
31 $bin .= '0';
34 return $bin;
72 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
73 $sql = sprintf("INSERT INTO test(id, bit_value) VALUES (%s, b'%s')", $value, $bin);
74 for ($i = 0; ($i < strlen($bin)) && ($bin[$i] == '0'); $i++)
76 $bin2 = substr($bin, $i, strlen($bin));
88 if (($value != $row['id']) || (($bin != $row['_bin']) && ($bin2 != $row['_bin']))) {
91 $bits, $value, $bits, $row['id'], $row['_bin'], $bin, $bin2);
[all …]
H A Dmysqli_stmt_bind_result_bit.phpt16 $bin = '';
19 $bin .= '1';
22 $bin .= '0';
25 return $bin;
89 $bin = ($bits < 32) ? decbin($value) : dec32bin($value, $bits);
90 for ($i = 0; ($i < strlen($bin)) && ($bin[$i] == '0'); $i++)
92 $bin2 = substr($bin, $i, strlen($bin));
126 if (($value != $row['id']) || (($bin != $row['_bin']) && ($bin2 != $row['_bin']))) {
128 … printf("[012 - %d] Insert of %s in BIT(%d) column might have failed. id = %s, bin = %s (%s/%s)\n",
129 $bits, $value, $bits, $row['id'], $row['_bin'], $bin, $bin2);
/PHP-7.4/ext/phar/tests/
H A Dbug69720.phar2bin���������������������������������������������������������������������������������0000000�������…
H A Dbug79503.phar2 …�����������������������������������������������������������.phar/.metadata.bin��������������������…
3 …�����������������������������������������������������������.phar/.metadata.bin��������������������…
/PHP-7.4/ext/standard/tests/file/
H A Dbug81145.phpt9 $src = __DIR__ . "/bug81145_src.bin";
13 @unlink(__DIR__ . "/bug81145_src.bin");
18 $src = __DIR__ . "/bug81145_src.bin";
19 $dst = __DIR__ . "/bug81145_dst.bin";
47 @unlink(__DIR__ . "/bug81145_src.bin");
48 @unlink(__DIR__ . "/bug81145_dst.bin");
/PHP-7.4/ext/standard/tests/general_functions/
H A Dproc_open02.phpt5 if (!is_executable('/bin/sleep')) echo 'skip no sleep';
13 '/bin/sleep 2',
37 string(12) "/bin/sleep 2"
56 string(12) "/bin/sleep 2"
H A Dbug34794.phpt5 if (!is_executable('/bin/cat')) echo 'skip cat not found';
10 $process1 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes1);
13 $process2 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes2);
H A Dbug39322.phpt6 if (!is_executable('/bin/sleep')) echo 'skip sleep not found';
17 $process = proc_open('/bin/sleep 120', $descriptors, $pipes);
29 string(14) "/bin/sleep 120"
H A Dproc_nice_basic-win.phpt22 static $bin, $pid;
24 if (!$bin) {
27 $bin = end($t);
32 $p = popen('wmic process where name="' . $bin . '"', 'r');
H A Dproc_open.phpt5 if (!is_executable("/bin/cat")) echo "skip";
17 "/bin/cat",
/PHP-7.4/ext/gd/tests/
H A Dimageloadfont_end_of_file_while_reading_header.phpt15 $bin = "\x41\x41\x41\x41\x00\x00\x00\x00\x00\x00";
17 fwrite($fp, $bin);
22 $bin = "\xe0\x00\x00\x00\x20\x00\x00\x00\x06\x00\x00\x00\x0a\x00\x00";
24 fwrite($fp, $bin);
/PHP-7.4/ext/pgsql/tests/
H A D14pg_update.phpt15 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
25 UPDATE "php_pgsql_test" SET "num"=1234,"str"=E'ABC',"bin"=E'XYZ' WHERE "num"=1234;
26 UPDATE "php_pgsql_test" SET "num='1234',"str='ABC',"bin='XYZ' WHERE "num='1234';
H A D12pg_insert_9.phpt17 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
27 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'\\x424242');
28 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES ('1234','AAA','BBB');
H A D13pg_select_9.phpt17 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
35 ["bin"]=>
44 ["bin"]=>
H A D14pg_update_9.phpt17 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
27 UPDATE "php_pgsql_test" SET "num"=1234,"str"=E'ABC',"bin"=E'\\x58595a' WHERE "num"=1234;
28 UPDATE "php_pgsql_test" SET "num"='1234',"str"='ABC',"bin"='XYZ' WHERE "num"='1234';
H A D17result.phpt33 ["bin"]=>
47 ["bin"]=>
63 ["bin"]=>
H A D10pg_convert.phpt16 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
27 [""bin""]=>
H A D10pg_convert_9.phpt17 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
28 [""bin""]=>
H A D12pg_insert.phpt15 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
23 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'BBB');
H A D13pg_select.phpt15 $fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
32 ["bin"]=>
/PHP-7.4/sapi/phpdbg/tests/
H A Dbug73704.phpt11 prompt> 00001: #!/usr/bin/env php
24 #!/usr/bin/env php

Completed in 45 milliseconds

1234