%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/jetbrains/phpstorm-stubs/fileinfo/ |
Current File : /home/graphicd/public_html/vebto/vendor/jetbrains/phpstorm-stubs/fileinfo/fileinfo.php |
<?php // Start of fileinfo v.1.0.5 class finfo { /** * @param $options [optional] * @param $arg [optional] */ public function finfo ($options, $arg) {} /** * (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Set libmagic configuration options * @link https://php.net/manual/en/function.finfo-set-flags.php * @param int $options <p> * One or disjunction of more Fileinfo * constants. * </p> * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. */ public function set_flags ($options) {} /** * (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Return information about a file * @link https://php.net/manual/en/function.finfo-file.php * @param string $file_name [optional] <p> * Name of a file to be checked. * </p> * @param int $options [optional] <p> * One or disjunction of more Fileinfo * constants. * </p> * @param resource $context [optional] <p> * For a description of contexts, refer to . * </p> * @return string a textual description of the contents of the * <i>filename</i> argument, or <b>FALSE</b> if an error occurred. */ public function file ($file_name = null, $options = FILEINFO_NONE, $context = null) {} /** * (PHP 5 >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Return information about a string buffer * @link https://php.net/manual/en/function.finfo-buffer.php * @param string $string [optional] <p> * Content of a file to be checked. * </p> * @param int $options [optional] <p> * One or disjunction of more Fileinfo * constants. * </p> * @param resource $context [optional] * @return string a textual description of the <i>string</i> * argument, or <b>FALSE</b> if an error occurred. */ public function buffer ($string = null, $options = FILEINFO_NONE, $context = null) {} } /** * (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Create a new fileinfo resource * @link https://php.net/manual/en/function.finfo-open.php * @param int $options [optional] <p> * One or disjunction of more Fileinfo * constants. * </p> * @param string $magic_file [optional] <p> * Name of a magic database file, usually something like * /path/to/magic.mime. If not specified, * the MAGIC environment variable is used. If this variable * is not set either, /usr/share/misc/magic is used by default. * A .mime and/or .mgc suffix is added if * needed. * </p> * @return resource a magic database resource on success or <b>FALSE</b> on failure. */ function finfo_open ($options = null, $magic_file = null) {} /** * (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Close fileinfo resource * @link https://php.net/manual/en/function.finfo-close.php * @param resource $finfo <p> * Fileinfo resource returned by finfo_open. * </p> * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. */ function finfo_close ($finfo) {} /** * (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Set libmagic configuration options * @link https://php.net/manual/en/function.finfo-set-flags.php * @param resource $finfo <p> * Fileinfo resource returned by finfo_open. * </p> * @param int $options <p> * One or disjunction of more Fileinfo * constants. * </p> * @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. */ function finfo_set_flags ($finfo, $options) {} /** * (PHP >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Return information about a file * @link https://php.net/manual/en/function.finfo-file.php * @param resource $finfo <p> * Fileinfo resource returned by finfo_open. * </p> * @param string $file_name <p> * Name of a file to be checked. * </p> * @param int $options [optional] <p> * One or disjunction of more Fileinfo * constants. * </p> * @param resource $context [optional] <p> * For a description of contexts, refer to . * </p> * @return mixed a textual description of the contents of the * <i>filename</i> argument, or <b>FALSE</b> if an error occurred. */ function finfo_file ($finfo, $file_name, $options = null, $context = null) {} /** * (PHP 5 >= 5.3.0, PECL fileinfo >= 0.1.0)<br/> * Return information about a string buffer * @link https://php.net/manual/en/function.finfo-buffer.php * @param resource $finfo <p> * Fileinfo resource returned by finfo_open. * </p> * @param string $string <p> * Content of a file to be checked. * </p> * @param int $options [optional] <p> * One or disjunction of more Fileinfo * constants. * </p> * @param resource $context [optional] <p> * </p> * @param string $string * @param int $options [optional] One or disjunction of more * <a href="https://php.net/manual/en/fileinfo.constants.php">Fileinfo</a> constants. * @param resource $context [optional] * @return string a textual description of the <i>string</i> * argument, or <b>FALSE</b> if an error occurred. */ function finfo_buffer ($finfo ,$string, $options = FILEINFO_NONE, $context = NULL) {} /** * Detect MIME Content-type for a file * @link https://php.net/manual/en/function.mime-content-type.php * @param string $filename <p> * Path to the tested file. * </p> * @return string the content type in MIME format, like * text/plain or application/octet-stream. * @since 4.3 * @since 5.0 */ function mime_content_type ($filename) {} /** * No special handling. * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_NONE', 0); /** * Follow symlinks. * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_SYMLINK', 2); /** * Return the mime type and mime encoding as defined by RFC 2045. * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_MIME', 1040); /** * Return the mime type. * @since 5.3 * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_MIME_TYPE', 16); /** * Return the mime encoding of the file. * @since 5.3 * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_MIME_ENCODING', 1024); /** * Look at the contents of blocks or character special devices. * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_DEVICES', 8); /** * Return all matches, not just the first. * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_CONTINUE', 32); /** * If possible preserve the original access time. * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_PRESERVE_ATIME', 128); /** * Don't translate unprintable characters to a \ooo octal * representation. * @link https://php.net/manual/en/fileinfo.constants.php */ define ('FILEINFO_RAW', 256); /** * Returns the file extension appropiate for a the MIME type detected in the file. * For types that commonly have multiple file extensions, such as JPEG images, then the return value is multiple extensions speparated by a forward slash e.g.: "jpeg/jpg/jpe/jfif". * For unknown types not available in the magic.mime database, then return value is "???". Available since PHP 7.2.0. * @since 7.2 */ define('FILEINFO_EXTENSION', 2097152); // End of fileinfo v.1.0.5 ?>