我想在不执行文件的情况下包含文件中的代码示例
但我不知道为什么fread()
或file_get_contents()
这样的函数会削减所包含文件的前9行。
包括不执行代码(我尝试过的许多方法之一):
<?php
// get contents of a file into a string
$filename = "index_GD.php";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize($filename));
echo "<pre><codesample>".$contents."</codesample></pre>";
fclose($handle);
?>
包含文件的前11行:
<?php
// Set the content-type
header('Content-Type: image/png');
function imagegradientellipse($image, $cx, $cy, $w, $h, $ic, $oc){
$w = abs($w);
$h = abs($h);
$oc = array(0xFF & ($oc >> 0x10), 0xFF & ($oc >> 0x8), 0xFF & $oc);
$ic = array(0xFF & ($ic >> 0x10), 0xFF & ($ic >> 0x8), 0xFF & $ic);
$c0 = ($oc[0] - $ic[0]) / $w;
输出(前11行):
> 0x10), 0xFF & ($oc >> 0x8), 0xFF & $oc);
$ic = array(0xFF & ($ic >> 0x10), 0xFF & ($ic >> 0x8), 0xFF & $ic);
$c0 = ($oc[0] - $ic[0]) / $w;
$c1 = ($oc[1] - $ic[1]) / $w;
$c2 = ($oc[2] - $ic[2]) / $w;
$i = 0;
$j = 0;
$is = ($w<$h)?($w/$h):1;
$js = ($h<$w)?($h/$w):1;
while(1){
答案 0 :(得分:3)
使用htmlspecialchars http://php.net/manual/en/function.htmlspecialchars.php
echo htmlspecialchars($contents);
如果您检查页面源,您可能会在那里找到所有文本,尽管浏览器不会显示它。