Home
last modified time | relevance | path

Searched refs:filename (Results 101 – 125 of 980) sorted by path

12345678910>>...40

/PHP-7.4/ext/gd/tests/
H A Dimagewbmp_nullbyte_injection.phpt21 Warning: imagewbmp(): Invalid 2nd parameter, filename must not contain null bytes in %s on line %d
H A Dimagewebp_nullbyte_injection.phpt21 Warning: imagewebp(): Invalid 2nd parameter, filename must not contain null bytes in %s on line %d
H A Djpeg2wbmp_error2-mb.phpt2 Test jpeg2wbmp() function : wrong origin filename param
H A Djpeg2wbmp_error2.phpt2 Test jpeg2wbmp() function : wrong origin filename param
H A Djpeg2wbmp_error3.phpt2 Test jpeg2wbmp() function : wrong destination filename param
H A Dpng2wbmp_error2.phpt2 Test png2wbmp() function : wrong origin filename param
H A Dpng2wbmp_error3.phpt2 Test png2wbmp() function : wrong destination filename param
H A Dtest_image_equals_file_palette.phpt16 $filename = __DIR__ . DIRECTORY_SEPARATOR . 'test_image_equals_file_palette.png';
17 imagepng($im, $filename);
24 test_image_equals_file($filename, $im);
32 test_image_equals_file($filename, $im);
H A Dwebp_basic.phpt16 $filename = __DIR__ . '/webp_basic.webp';
27 imagewebp($im1, $filename);
29 $im2 = imagecreatefromwebp($filename);
30 imagewebp($im2, $filename);
/PHP-7.4/ext/hash/
H A Dhash.c488 zend_string *filename; in PHP_FUNCTION() local
492 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "OP|r", &zhash, php_hashcontext_ce, &filename, &zcontex… in PHP_FUNCTION()
500 stream = php_stream_open_wrapper_ex(ZSTR_VAL(filename), "rb", REPORT_ERRORS, NULL, context); in PHP_FUNCTION()
1313 ZEND_ARG_INFO(0, filename)
1325 ZEND_ARG_INFO(0, filename)
1338 ZEND_ARG_INFO(0, filename)
1351 ZEND_ARG_INFO(0, filename)
1375 ZEND_ARG_INFO(0, filename)
/PHP-7.4/ext/hash/tests/
H A Dhash_file_basic.phpt7 /* Prototype : string hash_file(string algo, string filename[, bool raw_output = false])
16 $filename = 'hash_file_basic_example.txt';
17 file_put_contents( $filename, 'The quick brown fox jumped over the lazy dog.' );
19 var_dump( hash_file( 'md5', $filename ) );
20 var_dump( hash_file( 'sha1', $filename ) );
21 var_dump( hash_file( 'sha256', $filename ) );
22 var_dump( hash_file( 'sha512', $filename ) );
24 var_dump( base64_encode( hash_file( 'md5', $filename, true ) ) );
31 $filename = 'hash_file_basic_example.txt';
32 unlink( $filename );
H A Dhash_file_basic1.phpt6 /* Prototype : string hash_file ( string algo, string filename [, bool raw_output] )
H A Dhash_file_error.phpt7 /* Prototype : string hash_file(string algo, string filename[, bool raw_output = false])
16 $filename = 'hash_file_error_example.txt';
17 file_put_contents( $filename, 'The quick brown fox jumped over the lazy dog.' );
22 var_dump( hash_file( 'foobar', $filename ) );
32 var_dump( hash_file( 'md5', $filename, false, $extra_arg ) );
39 $filename = 'hash_file_error_example.txt';
40 unlink( $filename );
H A Dhash_hmac_file_basic.phpt7 /* Prototype : string hash_hmac_file ( string algo, string filename, string key [, bool raw_output…
H A Dhash_hmac_file_error.phpt6 /* Prototype : string hash_hmac_file ( string algo, string filename, string key [, bool raw_output…
/PHP-7.4/ext/iconv/tests/
H A Diconv_mime_decode.phpt9 function my_error_handler($errno, $errmsg, $filename, $linenum, $vars)
H A Diconv_mime_encode.phpt9 function my_error_handler($errno, $errmsg, $filename, $linenum, $vars)
H A Diconv_strpos.phpt9 function my_error_handler($errno, $errmsg, $filename, $linenum, $vars)
H A Diconv_strrpos.phpt9 function my_error_handler($errno, $errmsg, $filename, $linenum, $vars)
/PHP-7.4/ext/imap/tests/
H A Dimap_fetch_overview_variation6.phpt69 $part4['disposition'] = array ('filename' => 'Test');
/PHP-7.4/ext/libxml/
H A Dlibxml.c295 static void *php_libxml_streams_IO_open_wrapper(const char *filename, const char *mode, const int r… in php_libxml_streams_IO_open_wrapper() argument
306 if (strstr(filename, "%00")) { in php_libxml_streams_IO_open_wrapper()
311 uri = xmlParseURI(filename); in php_libxml_streams_IO_open_wrapper()
314 resolved_path = xmlURIUnescapeString(filename, 0, NULL); in php_libxml_streams_IO_open_wrapper()
332 resolved_path = (char *)filename; in php_libxml_streams_IO_open_wrapper()
372 static void *php_libxml_streams_IO_open_read_wrapper(const char *filename) in php_libxml_streams_IO_open_read_wrapper() argument
374 return php_libxml_streams_IO_open_wrapper(filename, "rb", 1); in php_libxml_streams_IO_open_read_wrapper()
377 static void *php_libxml_streams_IO_open_write_wrapper(const char *filename) in php_libxml_streams_IO_open_write_wrapper() argument
379 return php_libxml_streams_IO_open_wrapper(filename, "wb", 0); in php_libxml_streams_IO_open_write_wrapper()
572 if (parser->input->filename) { in php_libxml_ctx_error_level()
[all …]
/PHP-7.4/ext/mbstring/
H A Dmbstring.c1203 static char *php_mb_rfc1867_basename(const zend_encoding *encoding, char *filename) /* {{{ */ in php_mb_rfc1867_basename() argument
1206 const size_t filename_len = strlen(filename); in php_mb_rfc1867_basename()
1213 s = php_mb_safe_strrchr_ex(filename, '\\', filename_len, (const mbfl_encoding *)encoding); in php_mb_rfc1867_basename()
1214 s2 = php_mb_safe_strrchr_ex(filename, '/', filename_len, (const mbfl_encoding *)encoding); in php_mb_rfc1867_basename()
1227 return filename; in php_mb_rfc1867_basename()
/PHP-7.4/ext/mbstring/tests/
H A Dmb_substitute_character_variation1.phpt19 function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
22 echo "Error: $err_no - $err_msg, $filename($linenum)\n";
/PHP-7.4/ext/mysqli/tests/
H A D061.phpt35 $filename = __DIR__ . "061.csv";
36 $fp = fopen($filename, "w");
45 …ILE '%s' INTO TABLE t_061 FIELDS TERMINATED BY ';'", mysqli_real_escape_string($link, $filename))))
49 …ILE '%s' INTO TABLE t_061 FIELDS TERMINATED BY ';'", mysqli_real_escape_string($link, $filename))))
61 unlink($filename);
H A Dmysqli_real_connect.phpt126 $filename = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'mysqli_real_connect_phpt';
127 if (!$fp = fopen($filename, 'w'))
128 printf("[020] Cannot open temporary file %s\n", $filename);
134 …if (mysqli_query($link, "LOAD DATA LOCAL INFILE '$filename' INTO TABLE test FIELDS TERMINATED BY '…
137 unlink($filename);

Completed in 47 milliseconds

12345678910>>...40