PHP file processing ~~Study Notes
The fopen function is used to open files in PHP.The first parameter of this function contains the name of the file to be opened, and the second parameter specifies which mode to use to open the file;
Files may be opened in the following modes:
-------------------------------------------------- ----------------------------------------
Mode | Description
-------------------------------------------------- ----------------------------------------
r | Read only. Start at the beginning of the file.
-------------------------------------------------- ----------------------------------------
r+ | read/write. Start at the beginning of the file.
-------------------------------------------------- ----------------------------------------
w | Write only. Opens and clears the contents of the file; if the file does not exist, creates a new file.
-------------------------------------------------- ----------------------------------------
w+ | read/write. Opens and clears the contents of the file; if the file does not exist, creates a new file.
-------------------------------------------------- ----------------------------------------
a | Append. Opens and writes to the end of the file, or creates a new file if it does not exist
-------------------------------------------------- ---------------------------- ----------
a+ | read/append. Maintain file contents by writing to the end of the file.
-------------------------------------------------- ----------------------------------------
x | Write only. Create new file. Returns FALSE if the file already exists.
-------------------------------------------------- ----------------------------------------
x+ | read/write. Create new file. If the file already exists, returns FALSE and an error.
-------------------------------------------------- ----------------------------------------
Note: If fopen() cannot open the specified file, it returns 0 (false).
-------------------------------------------------- ----------------------------------------
If fopen() cannot open the specified file, the following example will generate a message:
?>
-------------------------------------------------- ----------------------------------------
Close file:
The fclose() function is used to close an open file.
//some code to be executed
fclose($file);
?>
-------------------------------------------------- ----------------------------------------
Detect End-of-file
The feof() function detects whether the end of file (EOF) has been reached.
The feof() function is useful when looping over data of unknown length.
Note: In w, a and x modes, you cannot read open files!
-------------------------------------------------- ----------------------------------------
Read file line by line
The fgets() function is used to read a file line by line from a file.
Note: After calling this function, the file pointer will move to the next line.
while(!feof($file)) {
echo fgets($file)."
";
}
fclose($file);
?>
-------------------------------------------------- ----------------------------------------
Read file character by character
The fgetc() function is used to read from a file character by character.
Note: After calling this function, the file pointer will move to the next character.
while(!feof($file)) {
echo fgetc($file).;
}
echo "
";
fclose($file);
?>

wpsystem文件夹是windows应用文件夹;创建WpSystem文件夹是为了存储某些特定“Microsoft Store”应用程序的数据,因此建议不要删该文件夹,因为删除之后就无法使用指定的应用。

winreagent是在系统更新或升级的过程中创建的文件夹;该文件夹中通常包含临时文件,当更新或升级失败时,系统将通过还原先前创建的临时文件来回滚到执行更新或升级过程之前的版本。

baidunetdiskdownload是百度网盘默认下载文件的文件夹;百度网盘是百度推出的一项云存储服务,只要下载东西到百度网盘里,都会默认保存到这个文件夹中,并且可跨终端随时随地查看和分享。

“usmt.ppkg”是windows自带的系统还原功能的系统备份文件;Windows系统还原是在不需要重新安装操作系统,也不会破坏数据文件的前提下使系统回到原有的工作状态,PBR恢复功能的备份文件就是“usmt.ppkg”。

mobileEmuMaster是手机模拟大师的安装文件夹。手机模拟大师是PC电脑模拟运行安卓系统的免费模拟器程序,一款可以让用户在电脑上运行手机应用的软件,支持安装安卓系统中常见的apk执行文件,支持QQ、微信等生活常用应用,达到全面兼容的效果。

备份文件的扩展名通常是“.bak”;bak文件是一个备份文件,这类文件一般在'.bak前面加上应该有原来的扩展名,有的则是由原文件的后缀名和bak混合而成,在生成了某种类型的文件后,就会自动生成它的备份文件。

kml是谷歌公司创建的一种地标性文件格式;该文件用于记录某一地点或连续地点的时间、经度、纬度、海拔等地理信息数据,可以被“Google Earth”和“Google Maps”识别并显示。

config是软件或者系统中的配置文件,不可以删除;该文件是在用户开机时对计算机进行初始化设置,也就是用户对系统的设置都由它来对计算机进行恢复,因此不能删除软件或者系统中的config配置文件,以免造成错误。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
