文件操作1-php

时间:2024-09-11 16:35:38

is_file

(PHP 3, PHP 4, PHP 5)

is_file -- 判断给定文件名是否为一个正常的文件

说明

bool is_file ( string filename )

如果文件存在且为正常的文件则返回 TRUE

例子 1. is_file() 例子

<?php
var_dump(is_file('a_file.txt')) . "\n";
var_dump(is_file('/usr/bin/')) . "\n";
?>

上例将输出:

bool(true)
bool(false)

is_link

(PHP 3, PHP 4, PHP 5)

is_link -- 判断给定文件名是否为一个符号连接

is_readable

(PHP 3, PHP 4, PHP 5)

is_readable -- 判断给定文件名是否可读

说明

bool is_readable ( string filename )

如果文件存在并且可读则返回 TRUE

记住 PHP 也许只能以运行 webserver 的用户名(通常为 'nobody')来访问文件。不计入安全模式的限制。