我有一个文件管理器,我想添加编辑文件的选项(html
,php
,css
),但如果我尝试使用fgets()
,则会显示页面及其图形。如何只从文件中获取行,然后将它们作为响应发送给ajax请求。
这是我到目前为止所尝试的:
<?php
$handle = fopen('/location/', "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
echo $line;
}
fclose($handle);
} else {
// error opening the file.
}
?>
答案 0 :(得分:0)
使用
show_source("/location/file.php");
获取源代码。
答案 1 :(得分:0)
如果文件位于同一服务器上,则可以使用
$content = @file_get_contents($filename);
if($content){
echo $content;
}else{
echo 'File:"'.$filename.'" couldn\'t be found.';
}