php修改文件内容的方法:首先通过“file_get_contents”函数读出数据;然后使用“str_replace”函数修改文件内容;最后使用“file_put_contents”函数将修改后的内容写入文件中即可。
推荐:《PHP教程》
php修改php文件内容:
分三步:读取、修改、写入。
实现过程:
1、假设文件名为1.php,通过file_get_contents()函数读出数据,实现代码效果为 $content = file_get_contents('1.php');
2、假设1.php文件的内容为 aa52db27babfb9fc34cad3026ecd25d3,现在要把变量$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中文网其他相关文章!