PHP file_put_contents函数有什么用?

PHPz
Release: 2020-09-04 15:55:46
Original
2527 people have browsed it

PHP file_put_contents函数有什么用?

PHP file_put_contents函数有什么用?

file_put_contents()是PHP中的一个内置函数,作用是:将一个字符串写入文件中。

该函数访问文件时,遵循以下规则:

  • 如果设置了 FILE_USE_INCLUDE_PATH,那么将检查 *filename* 副本的内置路径

  • 如果文件不存在,将创建一个文件

  • 打开文件

  • 如果设置了 LOCK_EX,那么将锁定文件

  • 如果设置了 FILE_APPEND,那么将移至文件末尾。否则,将会清除文件的内容

  • 向文件中写入数据

  • 关闭文件并对所有文件解锁

如果成功,该函数将返回写入文件中的字符数。如果失败,则返回 False。

语法

int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] )
Copy after login

1.png

注:

  • 请使用 FILE_APPEND 避免删除文件中已存在的内容。

  • 本函数可安全用于二进制对象。

示例:

<?php
echo file_put_contents("test.txt","Hello World. Testing!");
?>
Copy after login

输出:

26
Copy after login

更多相关知识,请访问 PHP中文网!!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template