search
HomeBackend DevelopmentPHP TutorialIntroduction to commonly used file operation reading and writing functions in PHP_PHP Tutorial
Introduction to commonly used file operation reading and writing functions in PHP_PHP TutorialJul 13, 2016 pm 05:13 PM
phpunderintroduceseveralfunctionCommonly usedoperatedocumentarticleuseRead and write

This article introduces the following commonly used file operation functions file_get_contents reads the entire file content fopen creates and opens files fclose closes the file fgets reads a line of file content file_exists checks whether a file or directory exists file_put_contents writes to file fwrite writes files

Use PHP built-in function file_exists to check whether a file or directory exists. The file_exists function returns TRUE if the file or directory exists, or FALSE if it does not exist.

The following is a simple example code to check whether the file exists:

 代码如下 复制代码
$filename = "C:blablaphphello.txt";
if (file_exists($filename)) 
{echo "The file $filename exists.";
}else  {
echo "The file $filename does not exist."
;}?>


If the file exists, the displayed result of executing the PHP file is:

The file C:blablaphphello.txt exists.
If the file does not exist, the displayed result of executing the PHP file is:

The file C:blablaphphello.txt does not exist.
You can also use the file_exists function to test whether a directory exists. The sample code is as follows:

The code is as follows Copy code
 代码如下 复制代码

if (file_exists("C:blablaphp"))
  {echo "yes";}
else
  {echo "no";}

if (file_exists("C:blablaphp"))

{echo "yes";}
else

{echo "no";}

The entire file content can be read using the PHP built-in function file_get_contents.

The file_get_contents function reads the entire file and returns a string. The simplest way to write file_get_contents is as follows:


file_get_contents(filepath)

For example, you have a .txt file with the path:
 代码如下 复制代码


$f = file_get_contents("C:blablaphphello.txt");
echo $f;?>


C:blablaphphello.txt

The following php code uses the file_get_contents function to read the file and output the file contents:

The code is as follows Copy code

$f = file_get_contents("C:blablaphphello.txt");

echo $f;?>


Note: Since the file path contains backslashes, and in PHP strings, the backslashes need to be escaped and represented by two backslashes. (If you forget the escape of some special characters in PHP, please read the PHP string mentioned above.)

The return value of the file_get_contents function is the read file content string. If an error occurs, FALSE is returned.
 代码如下 复制代码
$f = fopen("c:datainfo.txt", "r");
?>
A file can be opened using the PHP built-in function fopen. Open file The simplest syntax of fopen is as follows: fopen(filepath,mode) Here is an example of PHP code to open a file:
The code is as follows Copy code
$f = fopen("c:datainfo.txt", "r"); ?>

Among them, c:datainfo.txt is the file path, and r indicates that the mode of opening the file is read only mode.

The fopen function has the following modes for opening files:

Mode Description
r Read only, the file pointer is at the beginning of the file.
r+ for reading and writing, the file pointer is at the beginning of the file.
w is write only, the file pointer is at the beginning of the file, and the file length is truncated to 0.

Create the file if it does not exist.

w+ reads and writes, the file pointer is at the beginning of the file, and the file length is truncated to 0.

Create the file if it does not exist.

a is write only, the file pointer is at the end of the file.

Create the file if it does not exist.

a+ for reading and writing, the file pointer is at the end of the file.

Create the file if it does not exist.

x is write only, the file pointer is at the beginning of the file.

If the file already exists, the fopen () function returns FALSE and generates an E_WARNING level error.

Create the file if it does not exist.

x+ for reading and writing, the file pointer is at the beginning of the file.

If the file already exists, the fopen () function returns FALSE and generates an E_WARNING level error.

Create the file if it does not exist.

If the file is successfully opened, the return value of the fopen function is a file pointer resource. If an error occurs, FALSE is returned.

Create file
Selecting an appropriate value for the fopen function parameter mode, you can create a file with fopen, for example:

The code is as follows Copy code
 代码如下 复制代码

$f = fopen("c:data101.txt", "w");
$f = fopen("c:data102.txt", "w+");
$f = fopen("c:data103.txt", "a");
$f = fopen("c:data104.txt", "a+");
$f = fopen("c:data105.txt", "x");
$f = fopen("c:data106.txt", "x+");
?>

$f = fopen("c:data101.txt", "w"); $f = fopen("c:data102.txt", "w+");

$f = fopen("c:data103.txt", "a");

$f = fopen("c:data104.txt", "a+");

$f = fopen("c:data105.txt", "x");
$f = fopen("c:data106.txt", "x+");

?>

Use the PHP built-in function fgets to read a line of the file.


The syntax for fgets to read a line of file content is:

fgets(filepointer)
Below we give an example of how to read a file line by line.

 代码如下 复制代码


$f= fopen("C:blablaphpsites.txt","r");
while (!feof($f)){ 
$line = fgets($f); 
echo "site: ",$line,"
";
}
fclose($f);?>


Suppose we have a sites.txt file with three lines and the following content: woyouxian.comblabla.cngoogle.com The file path of sites.txt is: C:blablaphpsites.txt We use PHP to read the file content line by line. The PHP code is as follows:
The code is as follows Copy code
$f= fopen("C:blablaphpsites.txt","r"); while (!feof($f)){ $line = fgets($f); echo "site: ",$line,"
"; } fclose($f);?>

Execute the PHP file and the displayed result returned is:

site: woyouxian.comsite: blabla.cnsite: google.com
The first line of this PHP code opens a file and the last line closes a file. The while loop statement means that when the file does not end, read one line and execute it in a loop until the file pointer reaches the end of the article.

The feof function is a built-in function of PHP, used to test whether the file pointer has reached the end of the file. Returns TRUE if yes, FALSE if not. The English meaning of eof is end of file, which is easy to remember.

Under normal circumstances, the return value of the fgets function is a string. If an error occurs, FALSE is returned.


Describes how to use the PHP built-in function fclose to close a file.

The fclose function syntax is as follows:

fclose(filepointer)
The fclose function returns TRUE if successful and FALSE if failed.

Here is a PHP code example of the fclose function:

The code is as follows Copy code
 代码如下 复制代码

$f = fopen("c:datainfo.txt", "r");
fclose($f);
?>

$f = fopen("c:datainfo.txt", "r");
fclose($f); ?>

In this chapter, we describe how to use fopen, fwrite, and fclose to implement a series of operations of opening files, writing files, and saving and closing files. Focus on the fwrite function.

PHP built-in function fwrite is used to write files.

The common syntax of the fwrite function is:

fwrite(handle,string)
 代码如下 复制代码
$f= fopen("C:blablaphpwrite.txt","w");
fwrite($f,"It is awesome.");fclose($f);echo "done";
?>


Among them, the parameter handle represents the file pointer resource (usually created by the fopen function), and string represents the content to be written.

The following PHP code example demonstrates how to create a new file, write its contents, then save and close the file:

The code is as follows Copy code
$f= fopen("C:blablaphpwrite.txt","w");

fwrite($f,"It is awesome.");fclose($f);echo "done";
?>

After executing the PHP file, a file with the path C:blablaphpwrite.txt will be created. The content of the file is It is awesome.

If you want to append content to the existing file, you only need to modify the parameter mode value of fopen, as follows:

$f= fopen("C:blablaphpwrite.txt","a");

For details about the parameter mode value of the fopen function, see fopen.


The fwrite function returns the number of bytes written to the file. If an error occurs, it returns FALSE.

PHP built-in function file_put_contents is used to write files.

 代码如下 复制代码

$content = "one for all";
file_put_contents($path,$content);
if (file_exists($path))
 {echo "ok";}else  {echo "ng";}
?>
The simplest way to write the file_put_contents function can only use two parameters, one is the file path and the other is the content to be written. The syntax is as follows: file_put_contents(filepath,data) If the file does not exist, the file_put_contents function will automatically create the file; if the file already exists, the original file will be overwritten. You can use the file_put_contents function to create and write a new file, or overwrite an original file. Here is an example of PHP code using the file_put_contents function:
The code is as follows Copy code
$content = "one for all"; file_put_contents($path,$content); if (file_exists($path)) {echo "ok";}else {echo "ng";} ?>

This PHP code example will create a file with the path C:blablafilesysone.txt and the content of the file is one for all.

If you want to append content to an existing file, you can also use the file_put_contents function, just add one parameter.

file_put_contents(filepath,data,flags)
When the value of flags is FILE_APPEND, it means appending content to the existing file.

For example, if we want to append content to the C:blablafilesysone.txt file in the above example, we can write like this:

if (file_exists($path)) {echo "ok";}else {echo "ng";}
The code is as follows
 代码如下 复制代码
$path ="C:blablafilesysone.txt";
$content = " all for one";
file_put_contents($path,$content,FILE_APPEND);
if (file_exists($path)) 
{echo "ok";}else  {echo "ng";}
?>

Copy code

$path="C:blablafilesysone.txt";
$content = "all for one"; file_put_contents($path,$content,FILE_APPEND);
?>

After executing the PHP file, we looked at the C:blablafilesysone.txt file and found that the file content had increased and became: one for all all for one The file_put_contents function returns the number of bytes written to the file, or FALSE if an error occurs.
http://www.bkjia.com/PHPjc/629216.html
www.bkjia.com
truehttp: //www.bkjia.com/PHPjc/629216.htmlTechArticleThis article introduces the following common file operation functions file_get_contents Read the entire file content fopen Create and open the file fclose Close the file fgets and read one line of the file file_e...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment