Home
last modified time | relevance | path

Searched refs:filename (Results 801 – 825 of 886) sorted by relevance

1...<<313233343536

/PHP-8.0/sapi/litespeed/
H A Dlsapi_main.c1332 file_handle.filename = *p; in cli_main()
1337 … zend_printf("No syntax errors detected in %s\n", file_handle.filename); in cli_main()
1339 zend_printf("Errors parsing %s\n", file_handle.filename); in cli_main()
1343 file_handle.filename = *p; in cli_main()
/PHP-8.0/ext/standard/tests/file/
H A Dfgetcsv_variation6.phpt27 $filename = __DIR__ . '/fgetcsv_variation6.tmp';
28 @unlink($filename);
40 $file_handle = fopen($filename, "w");
42 $file_handle = fopen($filename, $file_modes[$mode_counter] );
45 echo "Error: failed to create file $filename!\n";
62 $file_handle = fopen($filename, $file_modes[$mode_counter]);
87 unlink($filename);
H A Dfread_variation1.phpt61 … $filename = __DIR__."/fread_variation1.tmp"; // this is name of the file created by create_files()
63 $file_handle = fopen($filename, $file_mode);
65 echo "Error: failed to fopen() file: $filename!";
93 delete_file($filename); // delete file
H A Dfread_variation4.phpt57 … $filename = __DIR__."/fread_variation4.tmp"; // this is name of the file created by create_files()
59 $file_handle = fopen($filename, $file_mode);
61 echo "Error: failed to fopen() file: $filename!";
90 delete_file($filename); // delete file
/PHP-8.0/ext/standard/tests/class_object/
H A Dmethod_exists_variation_001.phpt9 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
H A Dget_class_methods_variation_001.phpt5 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
H A Dget_parent_class_variation_002.phpt9 function test_error_handler($err_no, $err_msg, $filename, $linenum) {
/PHP-8.0/ext/pdo_odbc/
H A Dconfig.m48 'shared' the extension filename is always pdo_odbc.so]])
/PHP-8.0/ext/standard/tests/url/
H A Durls.inc56 'zlib:filename.txt',
/PHP-8.0/ext/sqlite3/
H A Dsqlite3.c100 char *filename, *encryption_key, *fullpath; in PHP_METHOD() local
107 …if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "p|ls", &filename, &filename_len, &flags, &e… in PHP_METHOD()
117 memcmp(filename, ":memory:", sizeof(":memory:")-1) != 0)) { in PHP_METHOD()
118 if (!(fullpath = expand_filepath(filename, NULL))) { in PHP_METHOD()
130 fullpath = filename; in PHP_METHOD()
142 if (fullpath != filename) { in PHP_METHOD()
170 if (fullpath != filename) { in PHP_METHOD()
H A Dsqlite3_arginfo.h5 ZEND_ARG_TYPE_INFO(0, filename, IS_STRING, 0)
/PHP-8.0/Zend/
H A Dzend_alloc.h49 const char *filename; member
58 const char *filename; member
/PHP-8.0/ext/spl/
H A Dspl_directory_arginfo.h5 ZEND_ARG_TYPE_INFO(0, filename, IS_STRING, 0)
155 ZEND_ARG_TYPE_INFO(0, filename, IS_STRING, 0)
/PHP-8.0/ext/openssl/
H A Dopenssl.c1596 char * filename, file_path[MAXPATHLEN]; in PHP_FUNCTION() local
1601 Z_PARAM_PATH(filename, filename_len) in PHP_FUNCTION()
1614 if (!php_openssl_check_path(filename, filename_len, file_path, 2)) { in PHP_FUNCTION()
2655 char * filename, file_path[MAXPATHLEN]; in PHP_FUNCTION() local
2667 Z_PARAM_PATH(filename, filename_len) in PHP_FUNCTION()
2694 if (!php_openssl_check_path(filename, filename_len, file_path, 2)) { in PHP_FUNCTION()
3161 char * filename = NULL; in PHP_FUNCTION() local
3168 Z_PARAM_PATH(filename, filename_len) in PHP_FUNCTION()
4392 char * filename = NULL, file_path[MAXPATHLEN]; in PHP_FUNCTION() local
4975 char * filename; in PHP_FUNCTION() local
[all …]
/PHP-8.0/ext/odbc/
H A Dphp_odbc.c988 char *filename; in PHP_FUNCTION() local
1041 filename = estrndup(&ZSTR_VAL(tmpstr)[1], ZSTR_LEN(tmpstr) - 2); in PHP_FUNCTION()
1042 filename[strlen(filename)] = '\0'; in PHP_FUNCTION()
1045 if (php_check_open_basedir(filename)) { in PHP_FUNCTION()
1046 efree(filename); in PHP_FUNCTION()
1051 if ((params[i-1].fp = open(filename,O_RDONLY)) == -1) { in PHP_FUNCTION()
1052 php_error_docref(NULL, E_WARNING,"Can't open file %s", filename); in PHP_FUNCTION()
1054 efree(filename); in PHP_FUNCTION()
1058 efree(filename); in PHP_FUNCTION()
/PHP-8.0/ext/curl/
H A Dinterface.c1667 zend_string *filename; member
1677 zend_string_release(cb_arg->filename); in curl_free_cb_arg()
1960 …if (!(cb_arg->stream = php_stream_open_wrapper(ZSTR_VAL(cb_arg->filename), "rb", IGNORE_PATH, NULL… in read_cb()
2039 char *type = NULL, *filename = NULL; in build_mime_structure_from_hash() local
2067 filename = Z_STRVAL_P(prop); in build_mime_structure_from_hash()
2083 cb_arg->filename = zend_string_copy(postval); in build_mime_structure_from_hash()
2093 || (form_error = curl_mime_filename(part, filename ? filename : ZSTR_VAL(postval))) != CURLE_OK in build_mime_structure_from_hash()
2102 CURLFORM_FILENAME, filename ? filename : ZSTR_VAL(postval), in build_mime_structure_from_hash()
/PHP-8.0/ext/phar/tests/
H A Dphar_extract.phpt153 …aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa..." to "%s...", extracted filename is too long for f…
/PHP-8.0/ext/simplexml/
H A Dsimplexml.c1392 char *filename = NULL; in SXE_METHOD() local
1395 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|p!", &filename, &filename_len) == FAILURE) { in SXE_METHOD()
1407 if (filename) { in SXE_METHOD()
1410 bytes = xmlSaveFile(filename, (xmlDocPtr) sxe->document->ptr); in SXE_METHOD()
1417 outbuf = xmlOutputBufferCreateFilename(filename, NULL, 0); in SXE_METHOD()
2262 char *filename; in PHP_FUNCTION() local
2272 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|C!lsb", &filename, &filename_len, &ce, &options, &ns… in PHP_FUNCTION()
2282 docp = xmlReadFile(filename, NULL, (int)options); in PHP_FUNCTION()
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_frame.c82 smart_str_append(&s, op_array->filename); in phpdbg_compile_stackframe()
/PHP-8.0/ext/snmp/
H A Dsnmp_arginfo.h114 ZEND_ARG_TYPE_INFO(0, filename, IS_STRING, 0)
/PHP-8.0/ext/opcache/Optimizer/
H A Dpass1.c247 ce->info.user.filename != op_array->filename)) { in zend_optimizer_pass1()
/PHP-8.0/ext/standard/tests/strings/
H A Durl_t.phpt59 'zlib:filename.txt',
651 --> zlib:filename.txt: array(2) {
655 string(12) "filename.txt"
/PHP-8.0/ext/opcache/jit/dynasm/
H A Dminilua.c6148 if(filename==NULL){
6154 lf.f=fopen(filename,"r");
6172 if(filename)fclose(lf.f);
6622 if(filename)
6699 *pf=fopen(filename,mode);
6713 if(filename){
6715 *pf=fopen(filename,mode);
6717 fileerror(L,1,filename);
6753 *pf=fopen(filename,"r");
6755 fileerror(L,1,filename);
[all …]
/PHP-8.0/ext/tidy/
H A Dtidy.c157 #define TIDY_OPEN_BASE_DIR_CHECK(filename) \ argument
158 if (php_check_open_basedir(filename)) { \
435 static zend_string *php_tidy_file_to_mem(char *filename, zend_bool use_include_path) in php_tidy_file_to_mem() argument
440 if (!(stream = php_stream_open_wrapper(filename, "rb", (use_include_path ? USE_PATH : 0), NULL))) { in php_tidy_file_to_mem()
/PHP-8.0/ext/ftp/
H A Dphp_ftp.c403 char *filename; in PHP_FUNCTION() local
407 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlp", &z_ftp, &mode, &filename, &filename_len) == FAIL… in PHP_FUNCTION()
415 if (!ftp_chmod(ftp, mode, filename, filename_len)) { in PHP_FUNCTION()

Completed in 123 milliseconds

1...<<313233343536