将原始PHP发送给客户端?

时间:2014-01-16 15:23:31

标签: php jquery html

是否可以将PHP代码发送到浏览器?

该网站目前有PHP和jQuery可用。

例如:

<?php echo "HELLO"; ?>

这将在客户端显示为HELLO:

Hello

我想这样做,客户端/浏览器将收到:

<?php echo "HELLO"; ?>

可能的结构:

index.php(主页)

edit.php(将显示index.php源代码的页面,包括PHP广告,允许我编辑它(并将保存服务器端))


这是暂时的现场源代码编辑(因为我无法在某些地方访问cPanel)。

3 个答案:

答案 0 :(得分:6)

edit.php

<?php

  $cont = file_get_contents('index.php');
  echo $cont;

?>

答案 1 :(得分:0)

不喜欢这样。每当口译员看到

&lt;?php echo "HELLO"; ?&gt;

为了从外部文件中获取内容,您可以使用file_get_contents('filename.php');

 <?php echo htmlentities(file_get_contents('filename.php')); ?>

答案 2 :(得分:0)

PHP有一个内置的语法高亮显示器,可以在输出PHP代码时帮助你。

$string = '<?php echo "abc..."; ?>';
highlight_string($string);

或者,您可以使用

输出带有语法突出显示的PHP文件
highlight_file('index.php');