如何在HTML中显示源file.php?

前端之家收集整理的这篇文章主要介绍了如何在HTML中显示源file.php?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下PHP脚本(file.PHP),显示当前时间并显示用户的输入:
Current time:

<?PHP

$time=time();
$actual_time=date('H:i:s',$time);
echo $actual_time;

//show user input
$enter=@$_POST['enter'];
echo '<br>Input: '.$enter;

?>

<form action="" method="POST">
    <input type="text" name="enter">
    <input type="submit" value="Refresh">
</form>

默认情况下,该页面显示

如果我输入< strong> test< / strong>,我看到:

如果我输入< iframe src =“file.PHP”>< / iframe&gt ;,我可以在较小的窗口中重新加载页面

那么现在,如何通过在INPUT文本字段中提交某些HTML代码显示原始的PHP脚本(file.PHP)?

解决方法

<?PHP

// Disable a WebKit security feature
// which would prevent from showing the source code.
header('X-XSS-Protection: 0');

if (isset($_GET['source']) || isset($_POST['source'])) {
        $source = file_get_contents(__FILE__);

        // To prevent this control from showing up
        // in the output source code
        // enable the code below.
        /*
        $lines_to_remove = 26;
        $source = explode("\n",$source,$lines_to_remove);
        $source = $source[$lines_to_remove - 1];
        */

        $source = highlight_string($source,true);
        echo $source;

        return;
}

?>
Current time:

<?PHP


$time=time();
$actual_time=date('H:i:s',$time);
echo $actual_time;

//show user input
$enter=@$_POST['enter'];
echo '<br>Input: '.$enter;

?>

<form action="" method="POST">
    <input type="text" name="enter">
    <input type="submit" value="Refresh">
</form>

原文链接:https://www.f2er.com/html/231028.html

猜你在找的HTML相关文章