<?php
// 创建文件
$touch = ('./a.php');
var_dump($touch);
// 移动文件 重命名
$touch = rename('./a.php','./b.txt');
var_dump($touch);
//删除文件
$touch = unlink('./a.php');
// 获取文件大小
$filesize = filesize('./fa.jpg');
var_dump($filesize);
//判断是否是文件 判断文件为true 判断目录为false
$is_file = is_file('./test.php');
var_dump($is_file);
$is_file = is_file('./PHP');
var_dump($is_file);
// 判断文件是否存在,存在则删除
if(file_exists('./b.txt')){
echo "文件存在";
unlink('./b.txt');
echo "文件已删除";
}
else{
echo '文件不存在';
}
// 文件是否可执行
$is_executable = is_executable('./../xray_windows_amd64.exe');
var_dump($is_executable);
// 文件是否可写可读
$is_write = is_writeable('./test.php');
$is_read = is_readable('./test.php');
var_dump($is_write);
var_dump($is_read);
// 获取文件的创建时间
$time = filectime('./test.php');
var_dump(date('Y-m-d H:i:s',$time));
// 获取文件的修改时间
$time = filemtime('./test.php');
var_dump(date('Y-m-d H:i:s',$time));
// 获取文件上次访问时间
$time = fileatime('./ ');
var_dump(date('Y-m-d H:i:s',$time));
// 打开文件 读取文件 关闭文件 写入文件
$content = ''; // 声明一个空字符串
$file_open = fopen('./test.php','r'); // 只读文件
$file_write = fopen('./test.txt','w'); // w 是写入文件,如果文件不存在则会创建,如果文件有内容则会清空后再次写入
fwrite($file_write,'<?php phpinfo(); ?>');
fclose($file_write);
while(!feof($file_open)){ // feof 判断指针是否到文件末尾
//$content .= fread($file_open,1); // 一个字节一个字节读
$content = fgets($file_open); // 读取一行的内容
}
echo $content;
fclose($file_open);
// 读取文件 :打开、读取、关闭一步到位
$res = file_get_contents('./test.php');
echo $res;
// 写入文件
$file_write = file_put_contents('./test.txt','<?php phpinfo(); ?>'); // 以w方式写入文件
$file_write = file_put_contents('./test.txt','<?php phpinfo(); ?>',FILE_APPEND); // 在文本后追加语句
var_dump($file_write);
|