Home
last modified time | relevance | path

Searched refs:fp (Results 201 – 225 of 909) sorted by path

12345678910>>...37

/PHP-5.5/ext/mcrypt/tests/
H A Dmcrypt_decrypt_variation4.phpt56 $fp = fopen(__FILE__, "r");
109 'resource' => $fp
119 fclose($fp);
H A Dmcrypt_decrypt_variation5.phpt56 $fp = fopen(__FILE__, "r");
109 'resource' => $fp
119 fclose($fp);
H A Dmcrypt_ecb_variation1.phpt58 $fp = fopen(__FILE__, "r");
111 'resource' => $fp
121 fclose($fp);
H A Dmcrypt_ecb_variation2.phpt58 $fp = fopen(__FILE__, "r");
111 'resource' => $fp
121 fclose($fp);
H A Dmcrypt_ecb_variation3.phpt58 $fp = fopen(__FILE__, "r");
111 'resource' => $fp
121 fclose($fp);
H A Dmcrypt_ecb_variation4.phpt58 $fp = fopen(__FILE__, "r");
111 'resource' => $fp
121 fclose($fp);
H A Dmcrypt_ecb_variation5.phpt58 $fp = fopen(__FILE__, "r");
111 'resource' => $fp
121 fclose($fp);
H A Dmcrypt_encrypt_variation1.phpt56 $fp = fopen(__FILE__, "r");
109 'resource' => $fp
119 fclose($fp);
H A Dmcrypt_encrypt_variation2.phpt56 $fp = fopen(__FILE__, "r");
109 'resource' => $fp
119 fclose($fp);
H A Dmcrypt_encrypt_variation3.phpt56 $fp = fopen(__FILE__, "r");
109 'resource' => $fp
119 fclose($fp);
H A Dmcrypt_encrypt_variation4.phpt56 $fp = fopen(__FILE__, "r");
109 'resource' => $fp
119 fclose($fp);
H A Dmcrypt_encrypt_variation5.phpt57 $fp = fopen(__FILE__, "r");
110 'resource' => $fp
120 fclose($fp);
H A Dmcrypt_filters.phpt21 $fp = fopen($secretfile, 'wb');
22 stream_filter_append($fp, 'mcrypt.tripledes', STREAM_FILTER_WRITE, $opts);
23 fwrite($fp, 'Secret secret secret data');
24 fclose($fp);
28 $fp = fopen($secretfile, 'rb');
29 stream_filter_append($fp, 'mdecrypt.tripledes', STREAM_FILTER_READ, $opts);
30 $data = stream_get_contents($fp);
31 fclose($fp);
/PHP-5.5/ext/mysql/tests/
H A Dmysql_free_result.phpt31 if ($fp = fopen($tmpname, 'w')) {
32 if (false !== ($tmp = @mysql_free_result($fp)))
34 fclose($fp);
H A Dmysql_query_load_data_openbasedir.phpt15 if (!$fp = fopen('./simple.csv', 'w'))
18 fclose($fp);
62 if (!$fp = fopen('./simple.csv', 'w'))
66 if (!fwrite($fp, (binary)"'97';'x';\n") ||
67 !fwrite($fp, (binary)"'98';'y';\n") ||
68 !fwrite($fp, (binary)"99;'z';\n")) {
72 if (!fwrite($fp, "97;'x';\n") ||
73 !fwrite($fp, "98;'y';\n") ||
74 !fwrite($fp, "99;'z';\n")) {
78 fclose($fp);
/PHP-5.5/ext/mysqli/tests/
H A D061.phpt24 function my_read($fp, &$buffer, $buflen, &$error) {
25 $buffer = strrev(fread($fp, $buflen));
34 $fp = fopen($filename, "w");
35 fwrite($fp, b"foo;bar");
36 fclose($fp);
H A Dlocal_infile_tools.inc53 if (!$fp = fopen($file, 'w')) {
63 if (!fwrite($fp, (binary)"'97';'x';\n") ||
64 !fwrite($fp, (binary)"'98';'y';\n") ||
65 !fwrite($fp, (binary)"99;'z';\n")) {
71 if (!fwrite($fp, "97;'x';\n") ||
72 !fwrite($fp, "98;'y';\n") ||
73 !fwrite($fp, "99;'z';\n")) {
80 fclose($fp);
H A Dmysqli_debug_append.phpt45 if (!$fp = fopen($trace_file, 'w')) {
49 if (!fwrite($fp, (binary) 'mysqli_debug.phpt test line'))
51 fclose($fp);
H A Dmysqli_debug_ini.phpt22 if (!$fp = @fopen('/tmp/mysqli_debug_phpt.trace', 'w'))
25 fclose($fp);
H A Dmysqli_get_client_stats.phpt847 if ($fp = fopen($file, 'w')) {
848 @fwrite($fp, '1;"a"');
849 fclose($fp);
H A Dmysqli_info.phpt65 if (!$fp = fopen($file, 'w'))
69 if (!fwrite($fp, b"100;'a';\n") ||
70 !fwrite($fp, b"101;'b';\n") ||
71 !fwrite($fp, b"102;'c';\n")) {
75 fclose($fp);
H A Dmysqli_pam_sha256_public_key_ini.phpt52 if ((file_exists($file) && !unlink($file)) || !($fp = @fopen($file, "w"))) {
57 if (strlen($key) != fwrite($fp, $key)) {
H A Dmysqli_pam_sha256_public_key_option.phpt51 if ((file_exists($file) && !unlink($file)) || !($fp = @fopen($file, "w"))) {
54 if (strlen($row['Value']) != fwrite($fp, $row['Value'])) {
H A Dmysqli_pam_sha256_public_key_option_invalid.phpt51 if ((file_exists($file) && !unlink($file)) || !($fp = @fopen($file, "w"))) {
54 if (strlen($row['Value']) != fwrite($fp, $row['Value'])) {
139 if (!($fp = fopen($file_wrong, "w"))) {
142 fwrite($fp, $key);
143 fclose($fp);
149 if (!($fp = fopen($file_wrong, "w"))) {
152 fwrite($fp, "");
153 fclose($fp);
H A Dmysqli_real_connect.phpt125 if (!$fp = fopen($filename, 'w'))
128 fwrite($fp, '100;z');
129 fclose($fp);

Completed in 82 milliseconds

12345678910>>...37