Home
last modified time | relevance | path

Searched defs:filename (Results 1 – 25 of 132) sorted by relevance

123456

/PHP-8.3/ext/opcache/
H A Dopcache.stub.php13 function opcache_compile_file(string $filename): bool {}
15 function opcache_invalidate(string $filename, bool $force = false): bool {}
23 function opcache_is_script_cached(string $filename): bool {}
/PHP-8.3/ext/standard/
H A Ddl.c44 char *filename; in PHP_FUNCTION() local
110 PHPAPI int php_load_extension(const char *filename, int type, int start_now) in php_load_extension()
275 static void php_dl_error(const char *filename) in php_dl_error()
287 PHPAPI int php_load_extension(const char *filename, int type, int start_now) in php_load_extension()
H A Dfilestat.c320 char *filename; in php_do_chgrp() local
458 char *filename; in php_do_chown() local
556 char *filename; in PHP_FUNCTION() local
602 char *filename; in PHP_FUNCTION() local
685 PHPAPI void php_clear_stat_cache(bool clear_realpath_cache, const char *filename, size_t filename_l… in php_clear_stat_cache()
712 char *filename = NULL; in PHP_FUNCTION() local
731 PHPAPI void php_stat(zend_string *filename, int type, zval *return_value) in php_stat()
/PHP-8.3/ext/hash/
H A Dhash.stub.php15 function hash_file(string $algo, string $filename, bool $binary = false, array $options = []): stri…
25 function hash_hmac_file(string $algo, string $filename, #[\SensitiveParameter] string $key, bool $b…
/PHP-8.3/ext/com_dotnet/
H A Dcom_persist.stub.php11 public function SaveToFile(?string $filename, bool $remember = true): bool {}
13 public function LoadFromFile(string $filename, int $flags = 0): bool {}
/PHP-8.3/ext/phar/
H A Dphar_object.stub.php76 …public function __construct(string $filename, int $flags = FilesystemIterator::SKIP_DOTS|Filesyste…
84 public function addFile(string $filename, ?string $localName = null): void {}
227 …final public static function isValidPharFilename(string $filename, bool $executable = true): bool …
229 final public static function loadPhar(string $filename, ?string $alias = null): bool {}
239 …final public static function unlinkArchive(string $filename): bool {} // TODO make return type void
252 …public function __construct(string $filename, int $flags = FilesystemIterator::SKIP_DOTS|Filesyste…
267 public function addFile(string $filename, ?string $localName = null): void {}
521 …final public static function isValidPharFilename(string $filename, bool $executable = true): bool …
524 final public static function loadPhar(string $filename, ?string $alias = null): bool {}
539 …final public static function unlinkArchive(string $filename): bool {} // TODO make return type void
[all …]
H A Dfunc_interceptors.c26 char *filename; in PHAR_FUNC() local
91 static zend_string* phar_get_name_for_relative_paths(zend_string *filename, bool using_include_path) in phar_get_name_for_relative_paths()
161 zend_string *filename; in PHAR_FUNC() local
238 zend_string *filename; in PHAR_FUNC() local
282 zend_string *filename; in PHAR_FUNC() local
482 static void phar_file_stat(const char *filename, size_t filename_length, int type, zif_handler orig… in phar_file_stat()
730 char *filename; in PharFileFunction() local
796 char *filename; in PHAR_FUNC() local
/PHP-8.3/ext/fileinfo/
H A Dfileinfo.stub.php76 …public function file(string $filename, int $flags = FILEINFO_NONE, $context = null): string|false …
103 function finfo_file(finfo $finfo, string $filename, int $flags = FILEINFO_NONE, $context = null): s…
115 function mime_content_type($filename): string|false {}
/PHP-8.3/ext/readline/
H A Dreadline.stub.php28 function readline_read_history(?string $filename = null): bool {}
30 function readline_write_history(?string $filename = null): bool {}
/PHP-8.3/Zend/
H A Dzend_stream.c63 ZEND_API void zend_stream_init_fp(zend_file_handle *handle, FILE *fp, const char *filename) { in zend_stream_init_fp()
70 ZEND_API void zend_stream_init_filename(zend_file_handle *handle, const char *filename) { in zend_stream_init_filename()
76 ZEND_API void zend_stream_init_filename_ex(zend_file_handle *handle, zend_string *filename) { in zend_stream_init_filename_ex()
H A Dzend_dtrace.c58 const char *scope, *filename, *funcname, *classname; in dtrace_execute_ex() local
95 const char *filename; in dtrace_execute_internal() local
/PHP-8.3/ext/simplexml/
H A Dsimplexml.stub.php5 function simplexml_load_file(string $filename, ?string $class_name = SimpleXMLElement::class, int $…
21 public function asXML(?string $filename = null): string|bool {}
27 public function saveXML(?string $filename = null): string|bool {}
/PHP-8.3/main/streams/
H A Dphp_stream_plain_wrapper.h27 #define php_stream_fopen(filename, mode, opened) _php_stream_fopen((filename), (mode), (opened), 0 … argument
30 #define php_stream_fopen_with_path(filename, mode, path, opened) _php_stream_fopen_with_path((filen… argument
/PHP-8.3/win32/build/
H A Dmkdist.php169 function extract_file_from_tarball($pkg, $filename, $dest_dir) /* {{{ */
347 $filename = $dll[1]; variable
541 $filename = "$name-$version.tgz"; variable
/PHP-8.3/ext/pspell/
H A Dpspell.stub.php44 string $filename,
71 function pspell_config_personal(PSpell\Config $config, string $filename): bool {}
74 function pspell_config_repl(PSpell\Config $config, string $filename): bool {}
/PHP-8.3/ext/pdo_pgsql/
H A Dpgsql_driver.stub.php14 …public function pgsqlCopyFromFile(string $tableName, string $filename, string $separator = "\t", s…
20 …public function pgsqlCopyToFile(string $tableName, string $filename, string $separator = "\t", str…
/PHP-8.3/main/
H A Dfopen_wrappers.c363 zend_string *filename = NULL; local
433 ZSTR_VAL(filename)[length++] = PHP_DIR_SEPARATOR; local
500 PHPAPI zend_string *php_resolve_path(const char *filename, size_t filename_length, const char *path)
647 PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, zend_str…
H A Dfopen_wrappers.h34 #define OPENBASEDIR_CHECKPATH(filename) php_check_open_basedir(filename) argument
/PHP-8.3/sapi/phpdbg/
H A Dphpdbg_list.c130 void phpdbg_list_file(zend_string *filename, uint32_t count, int offset, uint32_t highlight) /* {{{… in phpdbg_list_file()
278 zend_string *filename = file->opened_path ? file->opened_path : file->filename; in phpdbg_init_compile_file() local
312 zend_op_array *phpdbg_compile_string(zend_string *source_string, const char *filename, zend_compile… in phpdbg_compile_string()
/PHP-8.3/ext/gd/
H A Dgd.stub.php486 function imageloadfont(string $filename): GdFont|false {}
551 function imagecreatefromavif(string $filename): GdImage|false {}
555 function imagecreatefromgif(string $filename): GdImage|false {}
559 function imagecreatefromjpeg(string $filename): GdImage|false {}
564 function imagecreatefrompng(string $filename): GdImage|false {}
573 function imagecreatefromxbm(string $filename): GdImage|false {}
577 function imagecreatefromxpm(string $filename): GdImage|false {}
584 function imagecreatefromgd(string $filename): GdImage|false {}
587 function imagecreatefromgd2(string $filename): GdImage|false {}
594 function imagecreatefrombmp(string $filename): GdImage|false {}
[all …]
/PHP-8.3/ext/posix/
H A Dposix.stub.php373 function posix_mkfifo(string $filename, int $permissions): bool {}
377 function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {}
380 function posix_access(string $filename, int $flags = 0): bool {}
383 function posix_eaccess(string $filename, int $flags = 0): bool {}
/PHP-8.3/ext/zip/examples/
H A Dset_compression.php8 $filename = "a.zip"; variable
H A Dcreate.php9 $filename = "./test112.zip"; variable
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_loaddata.c26 int mysqlnd_local_infile_init(void ** ptr, const char * const filename) in mysqlnd_local_infile_init()
140 mysqlnd_handle_local_infile(MYSQLND_CONN_DATA * conn, const char * const filename, bool * is_warnin… in mysqlnd_handle_local_infile()
/PHP-8.3/sapi/apache2handler/
H A Dphp_functions.c62 static request_rec *php_apache_lookup_uri(char *filename) in php_apache_lookup_uri()
76 char *filename; in PHP_FUNCTION() local
123 char *filename; in PHP_FUNCTION() local

Completed in 64 milliseconds

123456