企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
file_exists — 检查文件或目录是否存在 bool file_exists ( string $filename ) fileatime — 取得文件的上次访问时间 int fileatime ( string $filename ) filemtime — 取得文件修改时间 int filemtime ( string $filename ) filesize — 取得文件大小 int filesize ( string $filename ) filetype — 取得文件类型 string filetype ( string $filename ) fstat — 通过已打开的文件指针取得文件信息 array fstat ( resource $handle ) is_executable — 判断给定文件名是否可执行 bool is_executable ( string $filename ) is_file — 判断给定文件名是否为一个正常的文件 bool is_file ( string $filename ) is_readable — 判断给定文件名是否可读 bool is_readable ( string $filename ) is_uploaded_file — 判断文件是否是通过 HTTP POST 上传的 bool is_uploaded_file ( string $filename ) is_writable — 判断给定的文件名是否可写 bool is_writable ( string $filename ) is_writeable — is_writable 的别名 pathinfo — 返回文件路径的信息 mixed pathinfo ( string $path [, int $options = PATHINFO_DIRNAME | PATHINFO_BASENAME | PATHINFO_EXTENSION | PATHINFO_FILENAME ] ) realpath — 返回规范化的绝对路径名 string realpath ( string $path ) rename — 重命名一个文件或目录 bool rename ( string $oldname , string $newname [, resource $context ] ) stat — 给出文件的信息 array stat ( string $filename )