(PHP 5)
file_put_contents — 将一个字符串写入文件
$filename
, string $data
[, int $flags
[, resource $context
]] )和依次调用 fopen(),fwrite() 以及 fclose() 功能一样。
参数 data
可以是数组(但不能为多维数组),这就相当于
file_put_contents($filename, join('', $array))
自 PHP 5.1.0 起,data
参数也可以被指定为 stream 资源,这里 stream
中所保存的缓存数据将被写入到指定文件中,这种用法就相似于使用
stream_copy_to_stream() 函数。
该函数将返回写入到文件内数据的字节数,失败时返回FALSE
Example #1 Simple usage example
<?php
$file = 'people.txt';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new person to the file
$current .= "John Smith\n";
// Write the contents back to the file
file_put_contents($file, $current);
?>
Example #2 Using flags
<?php
$file = 'people.txt';
// The new person to add to the file
$person = "John Smith\n";
// Write the contents to the file,
// using the FILE_APPEND flag to append the content to the end of the file
// and the LOCK_EX flag to prevent anyone else writing to the file at the same time
file_put_contents($file, $person, FILE_APPEND | LOCK_EX);
?>
版本 | 说明 |
---|---|
5.1.0 |
添加了对 LOCK_EX 的支持和 data
参数处理 stream 资源的功能。
|
Note: 此函数可安全用于二进制对象。
如已启用fopen 包装器,在此函数中, URL 可作为文件名。关于如何指定文件名详见 fopen()。各种 wapper 的不同功能请参见 Supported Protocols and Wrappers,注意其用法及其可提供的预定义变量。