php学习笔记:读取文档的内容,利用php修改文档内容

Posted 简庆旺的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php学习笔记:读取文档的内容,利用php修改文档内容相关的知识,希望对你有一定的参考价值。

直接上代码

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2016/9/10 0010
 * Time: 20:27
 */
header("Content-type: text/html; charset=gbk");
if(isset($_POST[\'subbtn\'])){//如果提交,就开始执行操作
    //执行修改:
    $fileContent=$_POST[\'fileContent\'];//获取输入框的内容
    file_put_contents("a.txt", $fileContent);//执行替换
    echo \'修改内容成功!\';
}else
    echo \'修改内容失败!\';

?>
<form method="post" action="">
    <textarea name="fileContent" cols="100" rows="8">
        <?php echo file_get_contents("a.txt") ?>
    </textarea>
    <button name="subbtn">修改内容</button>
</form>

修改测试效果

修改前:

修改后:

以上是关于php学习笔记:读取文档的内容,利用php修改文档内容的主要内容,如果未能解决你的问题,请参考以下文章

用php读取word文档内容

用php 读取word 文档内容 比如:word文档为试题等等

PHP读取excel文档

php读取在线远程txt文档内容到数组并遍历

PHP学习笔记1

分享一些 PHP 中有用的知识和坑