《php函数之一》 

file_exists():判断文件是否存在

dirname(__FILE__):取得当前文件的目录路径。如:E:\AppServ\www\php168\do

basename(__FILE__):取得当前文件的文件名。如:index.php

header() :向客户端发送原始的 HTTP 报头。header("location:upgrade.php")

time():返回自从 Unix 纪元(格林威治时间 1970 年 1 月 1 日 00:00:00)到当前时间的秒数。如:1299244512

filemtime():取得文件上次被修改的时间,时间以 Unix 时间戳的方式返回。

serialize():将php值转化为序列化字符串,一般将array转变为字符串存储。

unserialize():将序列化字符串转化为php值。

is_dir() :检查指定的文件是否是目录。

unlink():删除文件。若成功,则返回 true,失败则返回 false。