我正在尝试在codeigniter中创建一个基本的CMS,并希望能够在CMS的后端打开视图文件,即在网页上。这样做的好处是能够直接从代码编辑器/ ftp客户端上传视图,但如果此选项不可用,则能够使用CMS修改它们。我知道我可以使用数据库来完成它,但是需要能够直接使用FTP视图。
我尝试使用谷歌搜索各种各样的东西,但关键字似乎拉起了完全不同的结果。
所以它基本上是打开文件,把它的内容放在一个表单/ textarea框中,然后保存它再次直接保存到文件中,但我找不到任何例子!
提前致谢!
下进行。
答案 0 :(得分:3)
列出文件
使用directory iterator,您可以列出文件夹的所有文件。 (在您的情况下,将所有.php文件的列表放入views文件夹中)
获取/设置文件内容
然后使用file_get_contents you可以检索文件的内容。
并使用file_put_contents您可以设置文件的内容。
您也可以查看
与file_get_contents和file_put_contents相同......
至于验证
如果文件is_readable
,您可以在获取文件内容之前进行检查如果文件is_writable
,您可能还需要在设置内容之前进行检查<强>完整的强>。
另外,如果我是你,我会为你的cms添加一个语法荧光笔,你可能想检查一些大鱼使用的那个:Apache,Aptana,Mozilla,Yahoo,Wordpress,...... / p>
答案 1 :(得分:1)
从很久以前开始就是一个(我相信的)工作解决方案 我可以说它过去有效,但我不能保证它仍然与你现有的系统兼容。
功能
你可以做很多更新。
这主要是一个快速而肮脏的解决方案,只是为了让事情有效
如果你还需要它来列出文件,你可以尝试将readdir或scandir(快速的东西)的结果输出到div中。或者,@ Hipny对于如何构建自己的
有正确的想法代码:
<?
$rand = mt_rand(0, 65535);
setcookie("check", $rand);
if ($_POST['pass'] != ""){
setCookie ("auth", hash("sha512", $_POST['pass']));
echo "<meta http-equiv='refresh' content='0;" . $_SERVER["SCRIPT_NAME"] . "'>";
}
if ($_GET['logout'] == "1"){
setCookie("auth","");
echo "<meta http-equiv='refresh' content='0;" . $_SERVER["SCRIPT_NAME"] . "'>";
}
if ($_COOKIE['auth'] != "!!!! INSERT YOUR OWN SHA512 HASH HERE !!!!"){
echo "<center><h1>Authentication required</h1><br /><form action='" . $_SERVER["SCRIPT_NAME"]. "?" . $_SERVER["QUERY_STRING"] . "' method='post'><input type='password' name='pass'><input type='submit' value='Authenticate'></form></center>";
die();
}
$rand = mt_rand(0, 65535);
setcookie("check", $rand);
?>
<html>
<head>
<script language="javascript" type="text/javascript">
function reloadFile(){
var query = window.location.search.substring(1);
var vars = query.split("&");
var redir = "?";
for (var i=0;i<vars.length;i++){
if (vars[i].indexOf("file=") == -1 && vars[i].indexOf("save=1") == -1){
if (redir == "") redir = "?" + vars[i];
else redir += "&" + vars[i];
}
}
while (redir.indexOf("&&") != -1) redir = redir.replace("&&", "&");
document.location.href = document.location.href.substring(0, document.location.href.indexOf("?")) + redir + "&file=" + document.getElementById("newfile").value;
}
</script>
<title>Editing file: <? echo $_GET['file']; ?></title>
</head>
<body>
<table cellspacing="0" cellpadding="0">
<tr>
<td colspan=2">
<input id="newfile" type="text" size="135" onkeydown="if (event.keyCode == 13) document.getElementById('load').click()"><input id="load" type="button" value="Load" onClick="if (confirm('Discard changes?')) reloadFile();">
</td>
</tr>
<tr>
<td colspan="2">
<?php
function ex($message){
throw new Exception($message);
}
function read($file){
try{
@$handle = fopen($file, "rb") or ex("Read Error!");
$contents = stream_get_contents($handle);
fclose($handle);
return htmlspecialchars($contents);
} catch (Exception $e) {
return "Creating new file.";
}
}
function save(){
$data = htmlspecialchars_decode($_POST['data']);
if($_GET['file'] != "") {
$fp=fopen($_GET['file'], "w");
fwrite($fp, $_POST['data']);
fclose($fp);
}
}
//echo strlen ($_POST['data']);
if ($_POST['data'] != "" && $_COOKIE['check'] == $_POST['checksum']) save();
else if ($_GET['save'] == 1) echo "<div id='abort'><h1><font color='FF0000'>Save checksum did not match: save aborted!</font> <a href=\"javascript:void(document.getElementById('abort').style.display = 'none')\" style='color: #000000;text-decoration:none;'>X</a></h1></div>";
?>
<form name="dataform" id="dataform" method="post" action="<? echo $_SERVER["SCRIPT_NAME"] . "?" . $_SERVER['QUERY_STRING']; if (strpos($_SERVER['QUERY_STRING'],"&save=1") === false) echo "&save=1"; ?>" onSubmit="return confirm('Do you want to save?');">
<textarea name="data" wrap="off" id="data"<? if ($_POST['h'] != "") echo " rows='" . $_POST['h'] . "'"; else if ($_GET['h'] != "") echo " rows='" . $_GET['h'] . "'";
<?
if ($_GET['file'] != "") echo read($_GET['file']);
?></textarea><br />
<input type="hidden" value="<? echo $rand ?>" id="checksum" name="checksum">
<script language="javascript" type="text/javascript">
</script>
</td>
</tr>
<tr>
<td>
<input type="submit" Value="Save">
<input type="button" Value="Revert" onClick="if (confirm('Are you sure you want to revert?')) document.location.href = document.location.href;">
<input type="button" Value="Logout" onClick="if (confirm('Are you sure you want to logout?')) document.location.href = '<? echo $_SERVER["SCRIPT_NAME"] ?>?logout=1';">
</td>
<td align="right">
<input name="h" id="h" onKeyUp='document.getElementById("data").rows = this.value'> x <input name="w" id="w" onKeyUp='document.getElementById("data").cols = this.value'>
<script language="javascript" type="text/javascript">
document.getElementById("data").style.width = document.body.clientWidth * .9;
document.getElementById("data").style.height = document.body.clientHeight * .8;
</script>
</td>
</tr>
</table>
</form>
</body>
</html>