当前位置:首页 > PHP教程 > php应用 > 列表

php单文件版在线代码编辑器

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-16 10:55:53 浏览: 评论:0 

这篇文章主要介绍了php单文件版在线代码编辑器,个人感觉相当不错,分享给大家,需要的朋友可以参考下

密码加密方式:

* md5(自设密码+$ace) //$ace为cdn镜像地址

使用方法:

* 1.确认 $pwd 变量值为 false, 上传本文件到PHP空间并访问

* 2.第一次访问提示设置密码,设置密码并牢记

* 3.使用第一次设置的密码登录后,默认编辑的是本php文件,

* 4.本文件是编辑器核心文件,请不要随意修改

* 5.保存编辑的文件请用 Ctrl + S 按键组合,等待执行结果

* 6.保存动作执行后请务必等待保存成功信息返回

* 7.重置操作会修改本程序的文件名,以防他人猜测路径

* 8.刷新功能仅是刷新本程序文件,不能刷新其他

建议在 chrome 浏览器中使用本编辑器,代码如下:

  1. <?php 
  2. session_start(); 
  3. $curr_file = __FILE__//默认编辑当前文件 
  4. $curr_file_path = str_replace(dirname(__FILE__), ''__FILE__); 
  5. $pwd = "57574d98bc6ebe77b07e59d87065cd9e"//密码初始化默认值为 false 
  6. $ace = 'ace.js'//编辑器核心js 
  7. $tip['core'] = 'alertify.core.min.css'
  8. $tip['css'] = 'alertify.default.min.css'
  9. $tip['js'] = 'alertify.min.js'
  10. $jquery = 'jquery.min.js'
  11. if ( false !== $pwd ) { 
  12.     define('DEFAULT_PWD'$pwd); 
  13. //文件后缀名对应的语法解析器 
  14. $lng = array
  15.     'as' => 'actionscript''js' => 'javascript'
  16.     'php' => 'php''css' => 'css''html' => 'html'
  17.     'htm' => 'html''ini' => 'ini''json' => 'json'
  18.     'jsp' => 'jsp''txt' => 'text''sql' => 'mysql'
  19.     'xml' => 'xml''yaml' => 'yaml''py' => 'python'
  20.     'md' => 'markdown''htaccess' => 'apache_conf'
  21.     'bat' => 'batchfile''go' => 'golang'
  22. ); 
  23. //判断用户是否登录 
  24. function is_logged() { 
  25.     $flag = false; 
  26.     if ( isset($_SESSION['pwd']) && defined('DEFAULT_PWD') ) { 
  27.         if ( $_SESSION['pwd'] === DEFAULT_PWD ) { 
  28.             $flag = true; 
  29.         } 
  30.     } 
  31.     return $flag
  32. //重新载入到本页面 
  33. function reload() { 
  34.     $file = pathinfo(__FILE__, PATHINFO_BASENAME); 
  35.     die(header("Location: {$file}")); 
  36. //判断请求是否是ajax请求 
  37. function is_ajax() { 
  38.     $flag = false; 
  39.     if ( isset($_SERVER['HTTP_X_REQUESTED_WITH']) ) { 
  40.         $flag = strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest'
  41.     } 
  42.     return $flag
  43. //销毁SESSION和COOKIE 
  44. function exterminate() { 
  45.     $_SESSION = array(); 
  46.     foreach ( $_COOKIE as $key ) { 
  47.         setcookie($key, null); 
  48.     } 
  49.     session_destroy(); 
  50.     $_COOKIE = array(); 
  51.     return true; 
  52. //获取一个目录下的文件列表 
  53. function list_dir($path$type = 'array') { 
  54.     $flag = false; 
  55.     $lst = array('dir'=>array(), 'file'=>array()); 
  56.     $base = !is_dir($path) ? dirname($path) : $path
  57.     $tmp = scandir($base); 
  58.     foreach ( $tmp as $k=>$v ) { 
  59.         //过滤掉上级目录,本级目录和程序自身文件名 
  60.         if ( !in_array($varray('.''..')) ) { 
  61.             $file = $full_path = rtrim($base'/').DIRECTORY_SEPARATOR.$v
  62.             if ( $full_path == __FILE__ ) { 
  63.                 continue//屏蔽自身文件不在列表出现 
  64.             } 
  65.             $file = str_replace(dirname(__FILE__), ''$file); 
  66.             $file = str_replace("\\"'/'$file); //过滤win下的路径 
  67.             $file = str_replace('//''/'$file); //过滤双斜杠 
  68.             if ( is_dir($full_path) ) { 
  69.                 if ( 'html' === $type ) { 
  70.                     $v = '<li class="dir" path="'.$file 
  71.                     .'" onclick="load();"><span>'.$v.'</span></li>'
  72.                 } 
  73.                 array_push($lst['dir'], $v); 
  74.             } else { 
  75.                 if ( 'html' === $type ) { 
  76.                     $v = '<li class="file" path="'.$file 
  77.                     .'" onclick="load()"><span>'.$v.'</span></li>'
  78.                 } 
  79.                 array_push($lst['file'], $v); 
  80.             } 
  81.         } 
  82.     } 
  83.     $lst = array_merge($lst['dir'], $lst['file']); 
  84.     $lst = array_filter($lst); 
  85.     $flag = $lst
  86.     if ( 'html' === $type ) { 
  87.         $flag = '<ul>'. implode(''$lst) .'</ul>'
  88.     } 
  89.     return $flag
  90. //递归删除一个非空目录 
  91. function deldir($dir) { 
  92.     $dh = opendir($dir); 
  93.     while ( $file = readdir($dh) ) { 
  94.         if ( $file != '.' && $file != '..' ) { 
  95.             $fullpath = $dir.'/'.$file
  96.             if ( !is_dir($fullpath) ) { 
  97.                 unlink($fullpath); 
  98.             } else { 
  99.                 deldir($fullpath); 
  100.             } 
  101.         } 
  102.     } 
  103.     return rmdir($dir); 
  104. //退出登录 
  105. if ( isset($_GET['logout']) ) { 
  106.     if ( exterminate() ) { 
  107.         reload(); 
  108.     } 
  109. //ajax输出文件内容 
  110. if ( is_logged() && is_ajax() && isset($_POST['file']) ) { 
  111.     $file = dirname(__FILE__).$_POST['file']; 
  112.     $ext = pathinfo($file, PATHINFO_EXTENSION); 
  113.     $mode = isset($lng[$ext]) ? $lng[$ext] : false; 
  114.     die(json_encode(array
  115.         'file' => $file'html' => file_get_contents($file), 
  116.         'mode' => $mode,     
  117.     ))); 
  118. //ajax输出目录列表 
  119. if ( is_logged() && is_ajax() && isset($_POST['dir']) ) { 
  120.     $dir = dirname(__FILE__).$_POST['dir']; 
  121.     $list_dir = list_dir($dir'html'); 
  122.     die(json_encode(array
  123.         'dir' => $dir'html' => $list_dir
  124.     ))); 
  125. //ajax保存文件 
  126. if ( is_logged() && is_ajax() && isset($_POST['action']) ) { 
  127.     $arr = array('result'=>'error''msg'=>'文件保存失败!'); 
  128.     $content = $_POST['content']; 
  129.     if ( 'save_file' === $_POST['action'] ) { 
  130.         if ( isset($_POST['file_path']) ) { 
  131.             $file = dirname(__FILE__).$_POST['file_path']; 
  132.         } else { 
  133.             $file = __FILE__
  134.         } 
  135.         file_put_contents($file$content); 
  136.         $arr['result'] = 'success'
  137.         $arr['msg'] = '保存成功!'
  138.     } 
  139.     die(json_encode($arr)); 
  140. //ajax删除文件或文件夹 
  141. if ( is_logged() && is_ajax() && isset($_POST['del']) ) { 
  142.     $path = dirname(__FILE__).$_POST['del']; 
  143.     $arr = array('result'=>'error''msg'=>'删除操作失败!'); 
  144.     if ( $_POST['del'] && $path ) { 
  145.         $flag = is_dir($path) ? deldir($path) : unlink($path); 
  146.         if ( $flag ) { 
  147.            $arr['msg'] = '删除操作成功!'
  148.            $arr['result'] = 'success'
  149.         } 
  150.     } 
  151.     die(json_encode($arr)); 
  152. //ajax新建文件或文件夹 
  153. if ( is_logged() && is_ajax() && isset($_POST['create']) ) { 
  154.     $flag = false; 
  155.     $arr = array('result'=>'error''msg'=>'操作失败!'); 
  156.     if ( isset($_POST['target']) ) { 
  157.         $target = dirname(__FILE__).$_POST['target']; 
  158.         $target = is_dir($target) ? $target : dirname($target); 
  159.     } 
  160.     if ( $_POST['create'] && $target ) { 
  161.         $base_name = pathinfo($_POST['create'], PATHINFO_BASENAME); 
  162.         $exp = explode('.'$base_name); 
  163.         $full_path = $target.'/'.$base_name
  164.         $new_path = str_replace(dirname(__FILE__), ''$full_path); 
  165.         if ( count($exp) > 1 && isset($lng[array_pop($exp)]) ) { 
  166.             file_put_contents($full_path''); 
  167.             $arr['result'] = 'success'
  168.             $arr['msg'] = '新建文件成功!'
  169.             $arr['type'] = 'file'
  170.         } else { 
  171.             mkdir($full_path, 0777, true); 
  172.             $arr['result'] = 'success'
  173.             $arr['msg'] = '新建目录成功!'
  174.             $arr['type'] = 'dir'
  175.         } 
  176.         if ( $base_name && $new_path ) { 
  177.             $arr['new_name'] = $base_name
  178.             $arr['new_path'] = $new_path
  179.         } 
  180.     } 
  181.     die(json_encode($arr)); 
  182. //ajax重命名文件或文件夹 
  183. if ( is_logged() && is_ajax() && isset($_POST['rename']) ) { 
  184.     $arr = array('result'=>'error''msg'=>'重命名操作失败!'); 
  185.     if ( isset($_POST['target']) ) { 
  186.         $target = dirname(__FILE__).$_POST['target']; 
  187.     } 
  188.     if ( $_POST['rename'] ) { 
  189.         $base_name = pathinfo($_POST['rename'], PATHINFO_BASENAME); 
  190.         if ( $base_name ) { 
  191.             $rename = dirname($target).'/'.$base_name
  192.             $new_path = str_replace(dirname(__FILE__), ''$rename); 
  193.         } 
  194.     } 
  195.     if ( $rename && $target && rename($target$rename) ) { 
  196.        $arr['new_name'] = $base_name
  197.        $arr['new_path'] = $new_path
  198.        $arr['msg'] = '重命名操作成功!'
  199.        $arr['result'] = 'success'
  200.     } 
  201.     if ( $target == __FILE__ ) { 
  202.         $arr['redirect'] = $new_path
  203.     } 
  204.     die(json_encode($arr)); 
  205. //获取代码文件内容 
  206. $code = file_get_contents($curr_file); 
  207. $tree = '<ul id="dir_tree"
  208.     <li class="dir" path="/" onclick="load()">ROOT'.list_dir($curr_file, 'html').'</li> 
  209. </ul>'; 
  210. //登陆和设置密码共用模版 
  211. $first = <<<HTMLSTR 
  212. <!DOCTYPE html> 
  213. <html><head><meta charset="UTF-8"
  214. <title>【标题】</title> 
  215. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"
  216. <style type="text/css" media="screen"
  217. body { 
  218.     overflow: hidden; background-color: #2D2D2D; color: #CCCCCC; font-size: 12px; margin: 0; 
  219.     font-family: 'Monaco''Menlo''Ubuntu Mono''Consolas''source-code-pro', monospace; 
  220. form { display: none; position: absolute; } 
  221. form h5 { font-size: 14px; font-weight: normal; margin: 0; line-height: 2em; } 
  222. form input { 
  223.     color: #fff; border: 1px solid #369; border-radius: 3px; background: #333; height: 22px; 
  224.     line-height: 1.6em; width: 125px; margin-right: 5px; vertical-align: middle; 
  225. form button { 
  226.     line-height: 1.6em; border: 1px solid #369; border-radius: 3px; 
  227.     background: #369; color: #fff; vertical-align: middle; 
  228. </style> 
  229. <link rel="stylesheet" href="{$tip['core']}" /> 
  230. <link rel="stylesheet" href="{$tip['css']}" /> 
  231. </head> 
  232. <body> 
  233.     <form method="post"
  234.         <input name="pwd" type="password" /><button type="submit">【动作】</button> 
  235.     </form> 
  236.     <script src="{$jquery}" type="text/javascript" charset="utf-8"></script> 
  237.     <script src="{$ace}" type="text/javascript" charset="utf-8"></script> 
  238.     <script src="{$tip['js']}" type="text/javascript"></script> 
  239.     <script type="text/javascript"
  240.     var editor = false; 
  241.     $(function(){ 
  242.         $('form').prepend('<h5>'+ document.title +'</h5>'); 
  243.         $('form').css({ 
  244.             left: ($(window).width()-$('form').width())/2, 
  245.             top: ($(window).height()-$('form').height())/2 
  246.         }); 
  247.         $('form').show(); 
  248.     }); 
  249.     </script> 
  250. </body></html> 
  251. HTMLSTR; 
  252. //判断是否第一次登录 
  253. if ( false === $pwd && emptyempty($_POST) ) { 
  254.     die(str_replace
  255.         array('【标题】''【动作】'), 
  256.         array('第一次使用,请先设置密码!''设置'), 
  257.         $first 
  258.     )); 
  259. //第一次设置登录密码 
  260. if ( false === $pwd && !emptyempty($_POST) ) { 
  261.     if ( isset($_POST['pwd']) && strlen($_POST['pwd']) ) { 
  262.         $pwd = $_SESSION['pwd'] = md5($_POST['pwd'].$ace); 
  263.         $code = preg_replace('#\$pwd = false;#''$pwd = "'.$pwd.'";'$code, 1); 
  264.         file_put_contents($curr_file$code); 
  265.     } else { 
  266.         reload(); 
  267.     } 
  268. //用户登录验证 
  269. if ( false !== $pwd && !emptyempty($_POST) ) { 
  270.     $tmp = md5($_POST['pwd'].$ace); 
  271.     if ( $tmp && $pwd && $tmp === $pwd ) { 
  272.         $_SESSION['pwd'] = $pwd
  273.         reload(); 
  274.     } 
  275. //处理一下html实体 
  276. $code = htmlspecialchars($code); 
  277. $dir_icon = str_replace(array("\r\n""\r""\n"), ''
  278. 'data:image/jpg;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAANCAYAAACgu+4kAAAAGXRFWHRTb2Z0d2 
  279. FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQVJREFUeNqkkk1uwjAQhd84bsNP1FUXLCtu0H3XPSoX4Qrd9wR 
  280. sCjQEcIY3DiiJUYiqRhp5Mra/92YSUVVgLSW49B7H+NApRh75XkHfFoCG+02tyflUeQTw2y9UYYP8cCStc9SM 
  281. PeVA/Sy6Dw555q3au1z+EhBYk1cgO7OSNdaFNT0x5sCkYDha0WPiHZgVqPzLO+8seai6E2jed42bCL06tNyEH 
  282. AX9kv3jh3HqH7BctFWLMOmAbcg05mHK5+sQpd1HYijN47zcDUCShGEHtzxtwQS9WTcAQmJROrJDLXQB9s1Tu6 
  283. MtRED4bwsHLnUzxEeKac3+GeP6eo8yevhjC3F1qC4CDAAl3HwuyNAIdwAAAABJRU5ErkJggg=='); 
  284. $file_icon = str_replace(array("\r\n""\r""\n"), ''
  285. 'data:image/jpg;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAQCAYAAADJViUEAAAAGXRFWHRTb2Z0d2 
  286. FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAS1JREFUeNqMU01KxkAMTaez7aYbNwreQdBzeopS6EXEW+jug7Z 
  287. C6X+/iUloSr6xioFHJkPee5mUJgBwT7gjpPB3XAgfiBjs5dOyLF/btl0pkEFngdbzPGNRFK/U+0hwJAAMjmcm 
  288. DsOA4zge6Pseu67DpmlEqK5rLMvyRkDJor6uq2SGktu2FfdpmpANqqoSASYnO/kthABJkoCOxCASkCBkWSYuQ 
  289. qCeNE1fqHz3fMkXzjnJ2sRinL33QBNIzWJ5nh/L8npQohVTJwYTyfFm/d6Oo2HGE8ffwseuZ1PEjhrOutmsRF 
  290. 0iC8QmPibEtT4hftrhHI95JqJT/HC2JOt0to+zN6MVsZ/oZKqwmyCTA33DkbN1sws0i+Pega6v0kd42H9JB/8 
  291. LJl5I6PNbgAEAa9MP7QWoNLoAAAAASUVORK5CYII='); 
  292. $loading = str_replace(array("\r\n""\r""\n"), ''
  293. 'data:image/gif;base64,R0lGODlhFAAUALMIAPh2AP+TMsZiALlcAKNOAOp4ANVqAP+PFv///wAAAAAAAA 
  294. AAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFCgAIACwAAAAAFAAUAAAEUxDJSau9iBDMteb 
  295. TMEjehgTBJYqkiaLWOlZvGs8WDO6UIPCHw8TnAwWDEuKPcxQml0Ynj2cwYACAS7VqwWItWyuiUJB4s2AxmWxG 
  296. g9bl6YQtl0cAACH5BAUKAAgALAEAAQASABIAAAROEMkpx6A4W5upENUmEQT2feFIltMJYivbvhnZ3Z1h4FMQI 
  297. Dodz+cL7nDEn5CH8DGZhcLtcMBEoxkqlXKVIgAAibbK9YLBYvLtHH5K0J0IACH5BAUKAAgALAEAAQASABIAAA 
  298. ROEMkphaA4W5upMdUmDQP2feFIltMJYivbvhnZ3V1R4BNBIDodz+cL7nDEn5CH8DGZAMAtEMBEoxkqlXKVIg4 
  299. HibbK9YLBYvLtHH5K0J0IACH5BAUKAAgALAEAAQASABIAAAROEMkpjaE4W5tpKdUmCQL2feFIltMJYivbvhnZ 
  300. 3R0A4NMwIDodz+cL7nDEn5CH8DGZh8ONQMBEoxkqlXKVIgIBibbK9YLBYvLtHH5K0J0IACH5BAUKAAgALAEAA 
  301. QASABIAAAROEMkpS6E4W5spANUmGQb2feFIltMJYivbvhnZ3d1x4JMgIDodz+cL7nDEn5CH8DGZgcBtMMBEox 
  302. kqlXKVIggEibbK9YLBYvLtHH5K0J0IACH5BAUKAAgALAEAAQASABIAAAROEMkpAaA4W5vpOdUmFQX2feFIltM 
  303. JYivbvhnZ3V0Q4JNhIDodz+cL7nDEn5CH8DGZBMJNIMBEoxkqlXKVIgYDibbK9YLBYvLtHH5K0J0IACH5BAUK 
  304. AAgALAEAAQASABIAAAROEMkpz6E4W5tpCNUmAQD2feFIltMJYivbvhnZ3R1B4FNRIDodz+cL7nDEn5CH8DGZg 
  305. 8HNYMBEoxkqlXKVIgQCibbK9YLBYvLtHH5K0J0IACH5BAkKAAgALAEAAQASABIAAAROEMkpQ6A4W5spIdUmHQ 
  306. f2feFIltMJYivbvhnZ3d0w4BMAIDodz+cL7nDEn5CH8DGZAsGtUMBEoxkqlXKVIgwGibbK9YLBYvLtHH5K0J0 
  307. IADs='); 
  308. //编辑器模版 
  309. $html = <<<HTMLSTR 
  310. <!DOCTYPE html> 
  311. <html><head><meta charset="UTF-8"
  312. <title>ACE代码编辑器</title> 
  313. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"
  314. <style type="text/css" media="screen"
  315. a { text-decoration: none; } 
  316. body { 
  317.     overflow: hidden; background-color: #2D2D2D; font-size: 12px; 
  318.     font-family: 'Consolas''Monaco''Menlo''Ubuntu Mono', monospace; 
  319.     scrollbar-arrow-color: #ccc; scrollbar-base-color: #333; 
  320.     scrollbar-dark-shadow-color: #00ffff; scrollbar-track-color: #272822; 
  321.     scrollbar-highlight-color: #272822; scrollbar-3d-light-color: #272822; 
  322.     scrollbar-face-color: #2D2D2D; scrollbar-shadow-color: #333; 
  323. ::-webkit-scrollbar { width:5px; height:6px; background-color:#444; } 
  324. ::-webkit-scrollbar:hover { background-color:#444; } 
  325. ::-webkit-scrollbar-thumb:hover { min-height:5px; min-width:5px; background-color: #AAA; } 
  326. ::-webkit-scrollbar-thumb:active { -webkit-border-radius:20px; background-color: #AAA; } 
  327. ::-webkit-scrollbar-thumb { 
  328.     min-height:5px; min-width:5px; -webkit-border-radius:20px; 
  329.     ::-webkit-border-radius:1px; background-color: #AAA; 
  330. body > pre { color: #666; } 
  331. #sider { margin: 0; position: absolute; top:  25px; bottom: 0; left: 0; right: 85%; } 
  332. #editor { margin: 0; position: absolute; top: 0; bottom: 0; left: 15%; right: 0; } 
  333. #dir_tree { margin:0; padding: 0; height: 100%; overflow: auto; position: relative; left: 5px; } 
  334. #dir_tree, #dir_tree ul, #dir_tree li { margin: 0; padding: 0; list-style: none inside; } 
  335. #dir_tree ul { padding-left: 20px; position: relative; } 
  336. #dir_tree li { text-indent: 2em; line-height: 1.6em; cursor: default; color: #ccc; } 
  337. #dir_tree li.hover > span, #dir_tree li:hover > span { color: #66D9EF; } 
  338. #dir_tree li#on > span { color: red; } 
  339. #dir_tree li.dir { background: url({$dir_icon}) no-repeat 3px 3px; } 
  340. #dir_tree li.file { background: url({$file_icon}) no-repeat 3px 0; } 
  341. #dir_tree li.loading { background: url({$loading}) no-repeat 3px 0; } 
  342. #logout { position: absolute; top: 0; left: 0; } 
  343. #logout a { display: inline-block; color: #aaa; line-height: 25px; padding: 0 4px; } 
  344. #logout a:hover { background: #000; color: #ddd; } 
  345. #contextmenu { position: absolute; top: 0; left: 0; background: #fff; color: #333; border: 1px solid #000; padding: 1px; } 
  346. #contextmenu span { display: block; line-height: 24px; text-indent: 20px; width: 80px; cursor: default; } 
  347. #contextmenu span:hover { background-color: #369; color: #fff; } 
  348. #alertify .alertify-message, #alertify .alertify-message { 
  349.     text-align: left !important; text-indent: 0; font-weight: bold; font-size: 16px; 
  350. #alertify .alertify-dialog, #alertify .alertify-dialog { 
  351.     font-family: 'Consolas'; padding: 10px !important; color: #333 !important; 
  352. #alertify .alertify-button { 
  353.     border-radius: 3px !important; font-weight: normal !important; 
  354.     font-size: 14px !important; padding: 3px 15px !important; 
  355. .alertify-buttons { text-align: right !important; } 
  356. </style> 
  357. <link rel="stylesheet" href="{$tip['core']}" /> 
  358. <link rel="stylesheet" href="{$tip['css']}" /> 
  359. </head><body> 
  360. <div id="logout"
  361.     <a href="javascript:void(0);">保存</a> 
  362.     <a href="javascript:void(0);">刷新</a> 
  363.     <a href="javascript:void(0);">重置</a> 
  364.     <a href="?logout">退出</a> 
  365. </div> 
  366. <div id="sider">{$tree}</div><pre id="editor">{$code}</pre> 
  367. <script src="{$jquery}" type="text/javascript" charset="utf-8"></script> 
  368. <script src="{$ace}" type="text/javascript" charset="utf-8"></script> 
  369. <script src="{$tip['js']}" type="text/javascript"></script> 
  370. <script type="text/javascript"
  371. var load = false; 
  372. var curr_file = false; 
  373. window.location.hash = ''
  374. alertify.set({delay: 1000}); //n秒后自动消失 
  375. alertify.set({labels: {ok:'确定',cancel:'取消'}}); 
  376. var editor = false; 
  377. $(function(){ 
  378.     //实例化代码编辑器 
  379.     editor = ace.edit("editor"); 
  380.     //设置编辑器的语法和高亮 
  381.     editor.setTheme("ace/theme/monokai"); 
  382.     editor.getSession().setMode("ace/mode/php"); 
  383.     //设置编辑器自动换行 
  384.     editor.getSession().setWrapLimitRange(null, null); 
  385.     editor.getSession().setUseWrapMode(true); 
  386.     //不显示垂直衬线 
  387.     editor.renderer.setShowPrintMargin(false); 
  388.     //editor.setReadOnly(true); //设置编辑器为只读 
  389.     //editor.gotoLine(325); //跳转到指定行 
  390.     //使编辑器获得输入焦点 
  391.     editor.focus(); 
  392.     //绑定组合按键 
  393.     var commands = editor.commands; 
  394.     commands.addCommand({ 
  395.         name: "save"
  396.         bindKey: {win: "Ctrl-S", mac: "Command-S"}, 
  397.         exec: save_file 
  398.     }); 
  399.     //保存动作 
  400.     function save_file() { 
  401.         if ( false == editor ) { return false; } 
  402.         var obj = { 
  403.             content: editor.getValue(), 
  404.             action: 'save_file' 
  405.         }; 
  406.         if ( false !== curr_file ) { 
  407.             obj.file_path = curr_file; 
  408.         } 
  409.         alertify.log('正在保存...'); 
  410.         $.post(window.location.href, obj, function(data){ 
  411.             if ( data.msg && 'success' == data.result ) { 
  412.                 alertify.success(data.msg); 
  413.             } else { 
  414.                 alertify.error(data.msg); 
  415.             } 
  416.         }, 'json'); 
  417.     } 
  418.     //加载目录列表或文件 
  419.     load = function(ele) { 
  420.         var curr = $(event.srcElement); 
  421.         if ( ele ) { curr = ele; } 
  422.         if ( curr.is('span') ) { curr = curr.parent('li'); } 
  423.         $('#dir_tree #on').removeAttr('id'); 
  424.         curr.attr('id''on'); 
  425.         var type = curr.attr('class'); 
  426.         var path = curr.attr('path'); 
  427.         window.location.hash = path; 
  428.         if ( 'file' === type ) { 
  429.             alertify.log('正在加载...'); 
  430.             curr.addClass('loading'); 
  431.             $.post(window.location.href, {file:path}, function(data){ 
  432.                 curr.removeClass('loading'); 
  433.                 if ( data.mode ) { 
  434.                     editor.getSession().setMode("ace/mode/"+data.mode); 
  435.                 } 
  436.                 //注意,空文件应当允许编辑 
  437.                 if ( true || data.html ) { 
  438.                     curr.attr('disabled''disabled'); 
  439.                     curr_file = path; //当前编辑的文件路径 
  440.                     //动态赋值编辑器中的内容 
  441.                     editor.session.doc.setValue(data.html); 
  442.                     editor.renderer.scrollToRow(0); //滚动到第一行 
  443.                     editor.focus(); //编辑器获得焦点 
  444.                     setTimeout(function(){ 
  445.                         editor.gotoLine(0); 
  446.                     }, 800); 
  447.                 } 
  448.             }, 'json'); 
  449.             event.stopPropagation(); 
  450.             event.preventDefault(); 
  451.             return false; 
  452.         } 
  453.         if ( 'dir' === type ) { 
  454.             if ( curr.attr('loaded') ) { 
  455.                 curr.children('ul').toggle(); 
  456.                 event.stopPropagation(); 
  457.                 event.preventDefault(); 
  458.                 return false; 
  459.             } else { 
  460.                 curr.attr('loaded''yes'); 
  461.             } 
  462.             alertify.log('正在加载...'); 
  463.             curr.addClass('loading'); 
  464.             $.post(window.location.href, {dir:path}, function(data){ 
  465.                 curr.find('ul').remove(); 
  466.                 curr.removeClass('loading'); 
  467.                 if ( data.html ) { 
  468.                     curr.append(data.html); 
  469.                 } 
  470.             }, 'json'); 
  471.         } 
  472.         return false; 
  473.     } 
  474.     //绑定右键菜单 
  475.     $('#sider').bind('contextmenu'function(e){ 
  476.         var path = false; 
  477.         var target = $(event.srcElement); 
  478.         if ( target.is('span') ) { 
  479.             target = target.parent('li'); 
  480.         } 
  481.         if ( target.attr('path') ) { 
  482.             path = target.attr('path'); 
  483.         } else { 
  484.             return false; 
  485.         } 
  486.         target.addClass('hover'); 
  487.         var right_menu = $('#contextmenu'); 
  488.         if ( !right_menu.get(0) ) { 
  489.             var timer = false; 
  490.             right_menu = $('<div id="contextmenu"></div>'); 
  491.             right_menu.hover(function(){ 
  492.                 if ( timer ) { clearTimeout(timer); } 
  493.             }, function(){ 
  494.                 timer = setTimeout(function(){ 
  495.                     hide_menu(right_menu); 
  496.                 }, 500); 
  497.             }); 
  498.             $('body').append(right_menu); 
  499.         } 
  500.         if ( path ) { 
  501.             right_menu.html(''); 
  502.             var menu = $('<span>新建</span><span>浏览</span><span>重命名</span><span>删除</span>'); 
  503.             right_menu.append(menu); 
  504.             menu_area(right_menu, {left: e.pageX, top: e.pageY}); 
  505.             right_menu.find('span').click(function(){ 
  506.                 switch ( $(this).text() ) { 
  507.                     case '新建' : create_new(target, path); break
  508.                     case '浏览' : preview(target, path); break
  509.                     case '重命名' : re_name(target, path); break
  510.                     case '删除' : del_file(target, path); break
  511.                 } 
  512.                 hide_menu(right_menu); 
  513.             }); 
  514.         } 
  515.         path ? right_menu.show() : hide_menu(right_menu); 
  516.         return false; 
  517.     }); 
  518.     //隐藏右键菜单 
  519.     function hide_menu(menu) { 
  520.         $('#sider li.hover').removeClass('hover'); 
  521.         if ( menu ) { 
  522.             menu.hide(); 
  523.         } 
  524.     } 
  525.     //右键菜单区域 
  526.     function menu_area(menu, cfg) { 
  527.         if ( menu && cfg ) { 
  528.             var w = $('#sider').width() - menu.width(); 
  529.             var h = $('#sider').height() - menu.height(); 
  530.             if ( cfg.left > w ) { cfg.left = w; } 
  531.             if ( cfg.top > h ) { cfg.top = h; } 
  532.             menu.css(cfg); 
  533.         } 
  534.     } 
  535.     //保存按钮 
  536.     $('#logout>a:contains("保存")').click(function(){ 
  537.         save_file(); 
  538.         return false; 
  539.     }); 
  540.     //刷新按钮 
  541.     $('#logout>a:contains("刷新")').click(function(){ 
  542.         window.location.href = window.location.pathname; 
  543.         return false; 
  544.     }); 
  545.     //重置按钮 
  546.     $('#logout>a:contains("重置")').click(function(){ 
  547.         alertify.confirm('是否修改 {$curr_file_path} 程序文件名?'function (e) { 
  548.             if ( !e ) { return 'cancel'; } 
  549.             re_name($('<a>'), '{$curr_file_path}'); 
  550.         }); 
  551.         return false; 
  552.     }); 
  553.     //新建操作 
  554.     function create_new(obj, path) { 
  555.         if ( !obj || !path ) { return false; } 
  556.         alertify.prompt('请输入新建文件或文件夹名:'function (e, str) { 
  557.             if ( !e || !str ) { return false; } 
  558.             alertify.log('正在操作中...'); 
  559.             $('#dir_tree #on').removeAttr('loaded').removeAttr('id'); 
  560.             $.post(window.location.href, {create:str,target:path}, function(data){ 
  561.                 if ( data.msg && 'success' == data.result ) { 
  562.                     alertify.success(data.msg); 
  563.                     if ( obj.attr('class') == 'dir' ) { 
  564.                         load(obj); //重新加载子节点 
  565.                     } else { 
  566.                         load(obj.parent().parent()); 
  567.                     } 
  568.                 } else { 
  569.                     alertify.error(data.msg); 
  570.                 } 
  571.             }, 'json'); 
  572.         }); 
  573.     } 
  574.     //浏览操作 
  575.     function preview(obj, path) { 
  576.         if ( !obj || !path ) { return false; } 
  577.         window.open(path, '_blank'); 
  578.     } 
  579.     //重命名 
  580.     function re_name(obj, path) { 
  581.         if ( !obj || !path ) { return false; } 
  582.         alertify.prompt('重命名 '+path+' 为:'function (e, str) { 
  583.             if ( !e || !str ) { return false; } 
  584.             alertify.log('正在操作中...'); 
  585.             $.post(window.location.href, {rename:str,target:path}, function(data){ 
  586.                 if ( data.msg && 'success' == data.result ) { 
  587.                     alertify.success(data.msg); 
  588.                     if ( data.redirect ) { 
  589.                         window.location.href = data.redirect; 
  590.                     } 
  591.                     if ( data.new_name ) { 
  592.                         obj.children('span').first().text(data.new_name); 
  593.                         obj.attr('path', data.new_path); 
  594.                     } 
  595.                 } else { 
  596.                     alertify.error(data.msg); 
  597.                 } 
  598.             }, 'json'); 
  599.         }); 
  600.     } 
  601.     //删除文件动作 
  602.     function del_file(obj, path) { 
  603.         if ( !obj || !path ) { return false; } 
  604.         alertify.confirm('您确定要删除:'+path+' 吗?'function (e) { 
  605.             if ( !e ) { return 'cancel'; } 
  606.             alertify.log('正在删除中...'); 
  607.             $.post(window.location.href, {del:path}, function(data){ 
  608.                 if ( data.msg && 'success' == data.result ) { 
  609.                     alertify.success(data.msg); 
  610.                     obj.remove(); 
  611.                 } else { 
  612.                     alertify.error(data.msg); 
  613.                 } 
  614.             }, 'json'); 
  615.         }); 
  616.     } 
  617. }); 
  618. </script> 
  619. </body></html> 
  620. HTMLSTR; 
  621. //判断是否已经登录 
  622. if ( !is_logged() ) { 
  623.     die(str_replace
  624.         array('【标题】''【动作】'), 
  625.         array('请输入您第一次设置的密码!''登录'), 
  626.         $first 
  627.     )); 
  628. else { 
  629.     echo $html

以上就是本文所述的全部内容了,希望大家能够喜欢。

Tags: php线代码编辑器

分享到: