div 中的文件内容未正确显示
File content not getting displayed correctly in div
我正在尝试将 php 文件的内容显示到 div。
<div contenteditable="true" id="highlight">
<?php
echo file_get_contents( "/path/test.php" );
?>
</div>
test.php
<?php
require_once (lib.php');
/*
some comments here
*/
session_cache_limiter('private, must-revalidate');
header('Pragma: public');
@ob_start();
@session_start();
error_reporting(E_ALL);
ini_set('display_errors', '1');
// INCLUDES
define('FPDF_FONTPATH', "path/font/");
// print_r($_GET);
?>
.......................
但是 div 中的内容仅从这一行显示:// print_r($_GET);
。我需要显示文件的全部内容。
谁能帮我解决这个问题?提前致谢。
因为浏览器的 HTML 解析器将 <?php
视为 HTML 元素,所以它将被注释掉。您必须将 <
和 >
转换为它们的等效 HTML 实体。
您可以使用 htmlspecialchars
执行此操作(使用 <pre></pre>
保留实际文件中的新行):
<div contenteditable="true" id="highlight">
<pre><?php // this should be directly after pre to prevent white-space from appearing before the code from the file
echo htmlspecialchars(file_get_contents( "43677696_test.php" ));
?>
</pre>
</div>
可以看到输出here.
我正在尝试将 php 文件的内容显示到 div。
<div contenteditable="true" id="highlight">
<?php
echo file_get_contents( "/path/test.php" );
?>
</div>
test.php
<?php
require_once (lib.php');
/*
some comments here
*/
session_cache_limiter('private, must-revalidate');
header('Pragma: public');
@ob_start();
@session_start();
error_reporting(E_ALL);
ini_set('display_errors', '1');
// INCLUDES
define('FPDF_FONTPATH', "path/font/");
// print_r($_GET);
?>
.......................
但是 div 中的内容仅从这一行显示:// print_r($_GET);
。我需要显示文件的全部内容。
谁能帮我解决这个问题?提前致谢。
因为浏览器的 HTML 解析器将 <?php
视为 HTML 元素,所以它将被注释掉。您必须将 <
和 >
转换为它们的等效 HTML 实体。
您可以使用 htmlspecialchars
执行此操作(使用 <pre></pre>
保留实际文件中的新行):
<div contenteditable="true" id="highlight">
<pre><?php // this should be directly after pre to prevent white-space from appearing before the code from the file
echo htmlspecialchars(file_get_contents( "43677696_test.php" ));
?>
</pre>
</div>
可以看到输出here.