PHP的highlight_string()函数是用于将字符串以HTML格式进行高亮显示的函数。
函数定义: highlight_string(string $str, bool $return = false) : string|bool
参数:
返回值: 如果$return参数为true,则返回高亮显示后的字符串;如果$return参数为false,则返回布尔值false。
示例:
<?php
$str = "Hello, world!";
highlight_string($str);
?>
输出:
<code><span style="color: #000000">
<span style="color: #0000BB"><?php </span>
<span style="color: #007700">$str </span>
<span style="color: #333333">= </span>
<span style="color: #DD0000">"Hello, world!"</span>
<span style="color: #007700">;</span>
<span style="color: #0000BB">?></span>
</span>
</code>
上述示例中,highlight_string()函数将字符串"Hello, world!"以HTML格式进行了高亮显示,并将结果输出到浏览器中。
上一篇:动态查看及加载PHP扩展
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站