一、引论
在任何计算机设备中,文件是都是必须的对象,而在web编程中,文件的操作一直是web程序员的头疼的地方,而,文件的操作在cms系统中这是必须的,非常有用的,我们经常遇到生成文件目录,文件(夹)编辑等操作,现在我把php中的这些函数做一详细总结并实例示范如何使用.,关于对应的函数详细介绍,请查阅php手册.此处只总结重点.和需要注意的地方.(这在php手册是没有的.)
二、目录操作
首先介绍的是一个从目录读取的函数,opendir(),readdir(),closedir(),使用的时候是先打开文件句柄,而后迭代列出:
<?php $base_dir = "filelist/"; $fso = opendir($base_dir); echo $base_dir."<hr/>" ; while($flist=readdir($fso)){ echo $flist."<br/>" ; } closedir($fso) ?> |
<?php $d = dir("/etc/php5"); echo "handle: " . $d->handle . "/n"; echo "path: " . $d->path . "/n"; while (false !== ($entry = $d->read())) { echo $entry."/n"; } $d->close(); ?> |
<?php $file = 'dirlist.php'; if (is_readable($file) == false) { die('文件不存在或者无法读取'); } else { echo '存在'; } ?> |
<?php $file = "filelist.php"; if (file_exists($file) == false) { die('文件不存在'); } $data = file_get_contents($file); echo htmlentities($data); ?> |
<?php $file = 'dirlist.php'; if (is_writable($file) == false) { die("我是鸡毛,我不能"); } ?> |
<?php $file = 'dirlist.php'; if (is_writable($file) == false) { die('我是鸡毛,我不能'); } $data = '我是可鄙,我想要'; file_put_contents ($file, $data); ?> file_put_contents函数在php5中新引进的函数(不知道存在的话用function_exists函数先判断一下)低版本的php无法使用,可以使用如下方式: $f = fopen($file, 'w'); fwrite($f, $data); fclose($f); |
function cache_page($pageurl,$pagedata){ if(!$fso=fopen($pageurl,'w')){ $this->warns('无法打开缓存文件.');//trigger_error return false; } if(!flock($fso,lock_ex)){//lock_nb,排它型锁定 $this->warns('无法锁定缓存文件.');//trigger_error return false; } if(!fwrite($fso,$pagedata)){//写入字节流,serialize写入其他格式 $this->warns('无法写入缓存文件.');//trigger_error return false; } flock($fso,lock_un);//释放锁定 fclose($fso); return true; } |
<?php $file = 'dirlist.php'; $result = @unlink ($file); if ($result == false) { echo '蚊子赶走了'; } else { echo '无法赶走'; } ?> |
<?php $file = 'yang.txt'; $newfile = 'ji.txt'; # 这个文件父文件夹必须能写 if (file_exists($file) == false) { die ('小样没上线,无法复制'); } $result = copy($file, $newfile); if ($result == false) { echo '复制记忆ok'; } ?> |
<?php $file = 'test.txt'; echo date('r', filemtime($file)); ?> |
<?php $file = 'dirlist.php'; $perms = substr(sprintf('%o', fileperms($file)), -4); echo $perms; ?> |
<?php // 输出类似:somefile.txt: 1024 bytes $filename = 'somefile.txt'; echo $filename . ': ' . filesize($filename) . ' bytes'; ?> |
<?php $file = 'dirlist.php'; $perms = stat($file); var_dump($perms); ?> |
新闻热点
疑难解答