输出一个字符串,并突出显示 PHP 语法:
<html>
<body>
<?php
highlight_string("Hello world! <?php phpinfo(); ?>");
?>
</body>
</html>
上述代码的浏览器输出将是:
Hello world! <?php phpinfo(); ?>
上述代码的 HTML 输出将是(查看源代码):
<html>
<body>
<code>
<span style="color: #000000">Hello world!
<span style="color: #0000BB"><?php phpinfo</span>
<span style="color: #007700">(); </span>
<span style="color: #0000BB">?></span>
</span>
</code>
</body>
</html>
亲自试一试 »
highlight_string() 函数输出一个字符串,其中突出显示了 PHP 语法。使用 HTML 标签突出显示该字符串。
用于语法突出显示的颜色可以在 php.ini 文件中或使用 ini_set() 函数设置。
highlight_string(
string,return)
Parameter | Description |
---|---|
string | Required. Specifies the string to be highlighted |
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,失败则返回 FALSE |
---|---|
PHP 版本: | 4+ |
变更日志: | 这个返回PHP 4.2.0 中添加了参数 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!