php测试文件
php返回结果
文件路径:upload/file/content.txt
路径目录|dirname():upload/file
路径文件名|basename():content.txt
文件类型|filetype():file
文件大小|filesize():27
文件修改时间|filemtime():1411488282
绝对路径|realpath():d:\kuaipan\www\testphp\upload\file\content.txt
以数组形式返回路径信息|pathinfo():
array ( [dirname] => upload/file [basename] => content.txt [extension] => txt [filename] => content )
复制并重命名文件|rename(url01,url02):返回1
复制文件|copy(url01,url02):返回1
删除文件|unlink(url):返回
将文件信息以字符串形式读取出来|file_get_contents(url):
hello word! bad word!!!
将字符串写入文件,文件不存在自动创建,目录必须存在,|file_put_contents(url,str)返回文件大小:11
