php如何写入文件
php 提供了多种写入文件函数:fwrite():向打开文件写入字符串。fputcsv():向 csv 文件写入数组。fputs():向文件写入二进制数据。file_put_contents():写入字符串并自动创建文件(如果不存在)。
PHP 写入文件
PHP 提供了多种函数来向文件中写入数据,包括:
fwrite():
最基本的文件写入函数,将字符串写入到已打开的文件中。语法为:
int fwrite(resource $handle, string $string[, int $length]);
其中:
fputcsv():
将数组写入 CSV(逗号分隔值)文件中。语法为:
int fputcsv(resource $handle, array $fields[, string $delimiter[, string $enclosure[, string $escape]]]);
其中:
fputs():
向文件中写入二进制数据。与 fwrite() 类似,但不会对数据进行编码。语法为:
int fputs(resource $handle, string $string[, int $length]);
file_put_contents():
将整个字符串写入文件并自动创建文件,如果文件不存在的话。语法为:
int file_put_contents(string $filename, mixed $data[, int $flags[, resource $context]]);
其中:
示例:
// 使用 fwrite() 写入文件 $handle = fopen('text.txt', 'w'); fwrite($handle, 'Hello World!'); fclose($handle); // 使用 fputcsv() 写入 CSV 文件 $handle = fopen('data.csv', 'w'); $data = ['Name', 'Age', 'City']; fputcsv($handle, $data); fclose($handle); // 使用 file_put_contents() 写入文件 file_put_contents('config.json', '{ "name": "John Doe" }');
以上就是php如何写入文件的详细内容,更多请关注php中文网其它相关文章!