热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

编写PHP网页文件,PHP、thinkPHP5.0开发网站文件管理功能(三)编辑文件(示例代码)...

publicfunctionedit(){$fileiconv(‘UTF-8‘,‘GB2312‘,urldecode(input(‘file‘)));if(empty($file)

public function edit(){

$file = iconv(‘UTF-8‘,‘GB2312‘,urldecode(input(‘file‘)));

if(empty($file)|| !file_exists($file)){

$this->error(‘操作异常‘);

}

$arr = [‘.PHP‘, ‘.CSS‘, ‘.JS‘, ‘.XML‘, ‘.HTML‘, ‘.HTACCESS‘,‘.TXT‘,‘.JSON‘];

$exc = strtoupper(substr($file,strrpos($file,‘.‘)));

if (!in_array($exc, $arr)) {

$this->error("该文件类型不支持编辑");

}

if(request()->isPost()){

$content = input(‘code‘);

//打开要编辑的文件

$fp = fopen($file,‘w‘);

//写入新内容

fwrite($fp,$content);

//关闭文件

fclose($fp);

$this->success(‘文件保存成功‘,‘file/index‘);

}

$code = htmlentities(file_get_contents($file),ENT_COMPAT,‘UTF-8‘);//获取文件的内容,把HTML转为实体内容输出把代码展示在页面

$this->assign(‘code‘,$code);

$this->assign(‘currfile‘,$file);

$this->assign(‘ext‘, $exc);

return view("file_edit");

}

前端编辑界面推荐使用codemirror插件,能显示行数和高亮代码

20180524172421601359.png



推荐阅读
author-avatar
手机用户2602906305_849
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有