search
HomeBackend DevelopmentPHP TutorialLearn in detail how to operate files and directories in PHP_PHP Tutorial
Learn in detail how to operate files and directories in PHP_PHP TutorialJul 13, 2016 pm 05:29 PM
phponeandexiststudyrightoperatedocumentmethodyesofTable of contentscomputerequipmentdetailed

一:引论

  在任何计算机设备中,文件是都是必须的对象,而在web编程中,文件的操作一直是web程序员的头疼的地方,而,文件的操作在cms系统中这是必须的,非常有用的,我们经常遇到生成文件目录,文件(夹)编辑等操作,现在我把php中的这些函数做一详细总结并实例示范如何使用.,关于对应的函数详细介绍,请查阅php手册.此处只总结重点.和需要注意的地方.(这在php手册是没有的.)

  二:目录操作

  首先介绍的是一个从目录读取的函数,opendir(),readdir(),closedir(),使用的时候是先打开文件句柄,而后迭代列出:

$base_dir    =    "filelist/";
$fso        =    opendir($base_dir);
echo    $base_dir."
"        ;
while($flist=readdir($fso)){
echo $flist."
"    ;
}
closedir($fso)
?>

这是讲返回文件目录下面的文件已经目录的程序(0文件将返回false).

有时候需要知道目录的信息,可以使用dirname($path)和basename($path),分别返回路径的目录部分和文件名名称部分,可用disk_free_space($path)返回看空间空余空间.

创建命令:
mkdir($path,0777)
,0777是权限码,在非window下可用umask()函数设置.
rmdir($path)
将删除路径在$path的文件.

dir -- directory 类也是操作文件目录的重要类,有3个方法,read,rewind,close,这是一个仿面向对象的类,它先使用的是打开文件句柄,然后用指针的方式读取的.,这里看php手册:
$d = dir("/etc/php5");
echo "Handle: " . $d->handle . " ";
echo "Path: " . $d->path . " ";
while (false !== ($entry = $d->read())) {
   echo $entry." ";
}
$d->close();
?>

输出:
Handle: Resource id #2
Path: /etc/php5
.
..
apache
cgi
cli

文件的属性也非常重要,文件属性包括创建时间,最后修改时间,所有者,文件组,类型,大小等

下面我们重点谈文件操作.

三:文件操作

 ●    读文件 

首先是一个文件看能不能读取(权限问题),或者存在不,我们可以用is_readable函数获取信息.:

$file = dirlist.php;
if (is_readable($file) == false) {
        die(文件不存在或者无法读取);
} else {
        echo 存在;
}
?>

判断文件存在的函数还有file_exists(下面演示),但是这个显然无is_readable全面.,当一个文件存在的话可以用

$file = "filelist.php";
if (file_exists($file) == false) {
        die(文件不存在);
}
$data = file_get_contents($file);
echo htmlentities($data);
?>
但是file_get_contents函数在较低版本上不支持,可以先创建文件的一个句柄,然后用指针读取全部:

        $fso = fopen($cacheFile, r);
        $data = fread($fso, filesize($cacheFile));
        fclose($fso);

还有一种方式,可以读取二进制的文件:
$data = implode(, file($file));

 ●   写文件 

和读取文件的方式一样,先看看是不是能写:


$file = dirlist.php;
if (is_writable($file) == false) {
        die("我是鸡毛,我不能");
}
?>

If you can write, you can use the file_put_contents function to write:
$file = dirlist.php;
if (is_writable($file) == false) {
die(I am a chicken feather, I can’t);
}
$data = I am contemptible, I want;
file_put_contents ($file, $data);
?>

file_put_contents function is a newly introduced function in php5 (not sure it exists If so, use the function_exists function to determine first) The lower version of PHP cannot be used, you can use the following method:

$f = fopen($file, w);
fwrite($f, $data);
fclose($f);

replace it.

Sometimes you need to lock when writing a file, then write:
function cache_page($pageurl,$pagedata){
if(!$fso=fopen($pageurl,w)){
$this->warns(Cache file cannot be opened.);// trigger_error
return false;
}
if(!flock($fso,LOCK_EX)){//LOCK_NB, exclusive lock
$this->warns(Cache file cannot be locked.) ;//trigger_error
return false;
}
if(!fwrite($fso,$pagedata)){//Write byte stream, serialize to write other formats
$this-> ;warns(Unable to write to cache file.);//trigger_error
return false;
}
flock($fso,LOCK_UN);//Release lock
fclose($fso);
return true;
}

● Copy and delete files

It is very easy to delete files in php, use the unlink function to operate simply:

$file = dirlist.php;
$result = @unlink ($file);
if ($result == false) {
echo mosquito Drive away;
} else {
echo Can’t drive away;
}
?>
That’s it.

Copying files is also easy:

$file = yang.txt;
$newfile = ji.txt; # The parent folder of this file must be writable
if (file_exists($file) = = false) {
die (the demo is not online and cannot be copied);
}
$result = copy($file, $newfile);
if ($result == false) {
echo Copy memory ok;
}
?>

You can use the rename() function to rename a folder. Other operations can be achieved by combining these functions.

● Get file attributes

I will talk about a few common functions:
Get the last modification time:

$file = test.txt;
echo date(r, filemtime($file));
?>

What is returned is the unix timestamp, which is commonly used in caching technology.

Related are also getting the last access time fileatime(), filectime() when the file permissions, owner, all groups or other The time when the metadata in the inode was updated, the fileowner() function returns the file owner
$owner = posix_getpwuid(fileowner($file));
(non-window system), ileperms() obtains file permissions,
$file = dirlist.php;
$perms = substr(sprintf(%o, fileperms($file)), -4);
echo $perms;
?>

filesize() returns the file size in bytes:

//Output is similar: somefile.txt: 1024 bytes

$filename = somefile.txt;
echo $filename . : . filesize($filename ) . bytes;

?>

Get all the information of the file

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/509202.htmlTechArticle1: Introduction In any computer device, files are necessary objects, and in web programming, File operations have always been a headache for web programmers, and file operations in cms systems are...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
从零开始学Spring Cloud从零开始学Spring CloudJun 22, 2023 am 08:11 AM

作为一名Java开发者,学习和使用Spring框架已经是一项必不可少的技能。而随着云计算和微服务的盛行,学习和使用SpringCloud成为了另一个必须要掌握的技能。SpringCloud是一个基于SpringBoot的用于快速构建分布式系统的开发工具集。它为开发者提供了一系列的组件,包括服务注册与发现、配置中心、负载均衡和断路器等,使得开发者在构建微

轻松学会win7怎么还原系统轻松学会win7怎么还原系统Jul 09, 2023 pm 07:25 PM

win7系统自带有备份还原系统的功能,如果之前有给win7系统备份的话,当电脑出现系统故障的时候,我们可以尝试通过win7还原系统修复。那么win7怎么还原系统呢?下面小编就教下大家如何还原win7系统。具体的步骤如下:1、开机在进入Windows系统启动画面之前按下F8键,然后出现系统启动菜单,选择安全模式登陆即可进入。2、进入安全模式之后,点击“开始”→“所有程序”→“附件”→“系统工具”→“系统还原”。3、最后只要选择最近手动设置过的还原点以及其他自动的还原点都可以,但是最好下一步之前点击

学习PHP中的PHPUNIT框架学习PHP中的PHPUNIT框架Jun 22, 2023 am 09:48 AM

随着Web应用程序的需求越来越高,PHP技术在开发领域中变得越来越重要。在PHP开发方面,测试是一个必要的步骤,它可以帮助开发者确保他们创建的代码在各种情况下都可靠和实用。在PHP中,一个流行的测试框架是PHPUnit。PHPUnit是一个基于Junit的测试框架,其目的是创建高质量、可维护和可重复的代码。下面是一些学习使用PHPUnit框架的基础知识和步骤

分割后门训练的后门防御方法:DBD分割后门训练的后门防御方法:DBDApr 25, 2023 pm 11:16 PM

香港中文大学(深圳)吴保元教授课题组和浙江大学秦湛教授课题组联合发表了一篇后门防御领域的文章,已顺利被ICLR2022接收。近年来,后门问题受到人们的广泛关注。随着后门攻击的不断提出,提出针对一般化后门攻击的防御方法变得愈加困难。该论文提出了一个基于分割后门训练过程的后门防御方法。本文揭示了后门攻击就是一个将后门投影到特征空间的端到端监督训练方法。在此基础上,本文分割训练过程来避免后门攻击。该方法与其他后门防御方法进行了对比实验,证明了该方法的有效性。收录会议:ICLR2022文章链接:http

轻松学会win7如何升级win10系统轻松学会win7如何升级win10系统Jul 15, 2023 am 09:37 AM

随着win10系统的成熟,微软停止win7的更新和支持,越来越多人选择win10系统使用,打算将自己的win7升级win10系统。不过很多小伙伴不知道win7如何升级win10系统,找不到升级的按键。下面小编教大家一个简单的win7升级win10系统的方法。我们可以借助工具轻松实现win7升级安装win10的方法,具体的操作步骤如下:1、先在电脑上下载安装小鱼一键重装系统工具并打开,关闭电脑的杀毒软件,备份c盘重要资料。然后选择需要安装的win10系统点击安装此系统。2、这个界面选择想要安装的软

如何学习PHP中的Laravel框架如何学习PHP中的Laravel框架Jun 22, 2023 am 11:15 AM

Laravel是一个基于PHP的开源Web应用程序框架,是当今最受欢迎的框架之一。它的设计思想是以简单、优雅的方式解决复杂的问题,为开发Web应用程序提供了丰富的工具和资源。如果你想在PHP中学习Laravel框架,下面是几个关键步骤:第一步:安装和配置Laravel在开始使用Laravel之前,您需要安装PHP和Composer。Composer是一个PH

如何学习PHP中的ThinkPHP框架如何学习PHP中的ThinkPHP框架Jun 23, 2023 am 11:39 AM

随着互联网技术的发展,PHP语言越来越受到广泛应用。而在PHP中,使用框架可以提高开发效率,大大缩短项目开发时间。ThinkPHP是一款流行的PHP框架之一,那么如何学习它呢?以下是一些学习ThinkPHP框架的建议和步骤。一、理解MVC模式MVC是框架常用的一种设计模式,它将应用程序分为三个部分:模型(Model)、视图(View)和控制器(Control

从零开始学习PHP和数据库从零开始学习PHP和数据库Jun 19, 2023 pm 04:55 PM

在当今互联网社会中,网站的建设已经成为了很多人的关注点,而PHP和数据库则是建设网站所必备的技术。相信不少朋友都想从零开始学习PHP和数据库,但或许因为没有良好的学习方式和方法,导致学习进度很慢,或者甚至半途而废。本文将简单介绍如何从零开始学习PHP和数据库。先了解一些基本概念在进入正式的PHP和数据库学习之前,最好先掌握一些基本概念,例如服务器、前端、后端

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use