如何在屏幕上显示php文件

时间:2013-07-17 08:12:52

标签: php file

如何从这个php文件中将php文件显示到屏幕上? 因此php脚本应该显示自己的代码。 条件 - 禁止文件和输入语句!!!

5 个答案:

答案 0 :(得分:1)

<?php
echo file_get_contents('you_php_file.php');
?>

或只是

<?php
echo file_get_contents(__FILE__);
?>

详细了解file_get_contents here__FILE__ here

答案 1 :(得分:0)

如果PHP正在加载,你可以简单地回显代码,虽然你必须逃避课程的(双)引号:

Echo'$ testvar1 = \'butterfly \'; $ testvar2 = \'elephant \';';

或者如果确实要显示所有代码,donCallisto的方法更好; - )

答案 2 :(得分:0)

要让php文件显示自己的代码,你可以这样做:

<?php
echo file_get_contents(__FILE__);
?>

获取另一个文件的内容

<?php
echo file_get_contents("other_file.php");
?>

答案 3 :(得分:0)

使用highlight_file,以便您可以获得漂亮的颜色格式的源代码。

highlight_file($file_name);

答案 4 :(得分:0)

使用:

echo htmlspecialchars(file_get_contents($file));

(否则,如果您使用echo file_get_contents($file); 您必须点击页面上的查看&gt;来源才能查看内容,因为它们已放入<>