欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php如何修改文件内容

程序员文章站 2022-04-03 21:49:28
...

php修改文件内容的方法:首先通过“file_get_contents”函数读出数据;然后使用“str_replace”函数修改文件内容;最后使用“file_put_contents”函数将修改后的内容写入文件中即可。

php如何修改文件内容

推荐:《PHP教程

php修改php文件内容:

分三步:读取、修改、写入。

实现过程:

1、假设文件名为1.php,通过file_get_contents()函数读出数据,实现代码效果为 $content = file_get_contents('1.php');

2、假设1.php文件的内容为 <?php $op='hello world';?>,现在要把变量$op的值更换成 hello baidu,实现代码为:$content = str_replace('hello world','hello baidu',$content);

3、将变量$content 写入1.php文件,实现方式为:file_put_contents('1.php',$content);

具体实例代码如下:

<?php
$content = file_get_contents('1.php');
$content = str_replace('hello world','hello baidu',$content);
file_put_contents('1.php',$content);
?>

最终1.php文件内容为:$op = 'hello baidu';

以上就是php如何修改文件内容的详细内容,更多请关注其它相关文章!

相关标签: php