is_file函数

简介:

定义和用法

is_file() 函数检查指定的文件名是否是正常的文件

语法

is_file(file)

参数解析

参数 描述
file 必需。规定要检查的文件。

示例

<?php
    $file = "test.txt";
    if(is_file($file)){
        echo ("$file is a regular file");
    }else{
        echo ("$file is not a regular file");
    }
?>

输出

test.txt is a regular file

本文转自 素颜猪 51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1896174
相关文章
|
6月前
|
编译器 API C语言
C/C++ 获取文件名的方法:分享一些实用的获取文件名的方法和技巧(__FILE__,__builtin_FILE(),__BASE_FILE__等)
C/C++ 获取文件名的方法:分享一些实用的获取文件名的方法和技巧(__FILE__,__builtin_FILE(),__BASE_FILE__等)
651 0
|
6月前
|
C#
C# File.Copy介绍
C# File.Copy介绍
指定的 filePath 文件不存在
指定的 filePath 文件不存在
55 2
perhaps your file is in a different file format and youneed to use a different restore operator?
perhaps your file is in a different file format and youneed to use a different restore operator?
160 0
FILE
FILE
117 0
open函数: 可以帮助我们获取文件对象 内置函数 open(file, mode='r', buffering=-1, encoding=None, errors=None
open函数: 可以帮助我们获取文件对象 内置函数 open(file, mode='r', buffering=-1, encoding=None, errors=None
|
Python
6.4 file 的 with 用法
#!/usr/bin/env python # -*- coding:utf-8 -*- #@Time      :2017/10/28 9:13 #@Author    :zhouyuyao #@File      :file_with.
776 0
|
Python
6.2 file 写文件
#!/usr/bin/env python # -*- coding:utf-8 -*- #@Time      :2017/10/27 22:15 #@Author    :zhouyuyao #@File      :file_write.
692 0