使用测试文件("test.html")输出突出显示 PHP 语法的文件:
<html>
<body>
<?php
show_source("test.html");
?>
</body>
</html>
上述代码的浏览器输出可能是(取决于文件中的内容):
<html>
<body>
<?php
echo ("test.html");
?>
</body>
</html>
上面代码的 HTML 输出可能是(查看源代码):
<html>
<body>
<code><span style="color: #000000">
<html>
<br /><body>
<br /><span style="color: #0000BB"><?php
<br /></span><span style="color: #007700">echo (</span><span style="color: #DD0000">"test.html"</span><span style="color: #007700">);
<br /></span><span style="color: #0000BB">?>
<br /></span></body>
<br /></html></span>
</code>
</body>
</html>
亲自试一试 »
show_source() 函数输出一个文件,其中突出显示了 PHP 语法。通过使用 HTML 标签来突出显示语法。
用于突出显示的颜色可以在 php.ini 文件中或使用 ini_set() 函数设置。
show_source() 是一个别名高亮文件()。
笔记:使用此功能时,将显示整个文件 - 包括密码和任何其他敏感信息!
show_source(
filename,return)
Parameter | Description |
---|---|
filename | Required. Specifies the file to display |
return | Optional. If set to TRUE, this function will return the highlighted code as a string, instead of printing it out. Default is FALSE |
返回值: | 如果返回参数设置为 TRUE,此函数将突出显示的代码作为字符串返回,而不是将其打印出来。否则,成功时返回 TRUE,失败时返回 FALSE |
---|---|
PHP 版本: | 4+ |
变更日志: | 从 PHP 4.2.1 开始,该函数现在还受到 safe_mode 和 open_basedir 的影响。然而,safe_mode 在 PHP 5.4 中被删除。 PHP 4.2 - 添加了返回参数。 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!