码迷,mamicode.com
首页 > Web开发 > 详细

php-file_put_contents() 函数

时间:2017-02-16 11:50:20      阅读:1136      评论:0      收藏:0      [点我收藏+]

标签:php-file_put_contents() 函数

定义和用法

file_put_contents() 函数把一个字符串写入文件中

语法

file_put_contents(file,data,mode,context)

参数解析

参数描述
file必需。规定要写入数据的文件。如果文件不存在,则创建一个新文件。
data可选。规定要写入文件的数据。可以是字符串、数组或数据流。
mode

可选。规定如何打开/写入文件。可能的值:

  • FILE_USE_INCLUDE_PATH

  • FILE_APPEND

  • LOCK_EX

context

可选。规定文件句柄的环境。

context 是一套可以修改流的行为的选项。若使用 null,则忽略。

返回值

该函数将返回写入到文件内数据的字节数

示例

<?php
            $filename = "ceshi/2.txt";
            $content = file_get_contents($filename);
            // highlight_string($content);
            highlight_file($filename);

            file_put_contents($filename,$content."xinde");
?>

输出

dsfsdfsafsdfdsxindexindexinde 34


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1898337

php-file_put_contents() 函数

标签:php-file_put_contents() 函数

原文地址:http://suyanzhu.blog.51cto.com/8050189/1898337

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!