首页 > 代码库 > php学习笔记:读取文档的内容,利用php修改文档内容

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修改文档内容