highlight_stringphp语法加亮函数
highlight_string
highlight_string
(PHP 4 )
highlight_string -- Syntax highlighting of a string
Description
mixed highlight_string ( string str [, bool return])
The highlight_string() function outputs a syntax highlighted version of str using the colors defined in the built-in syntax highlighter for PHP.
If the second parameter return is set to TRUE then highlight_string() will
return the highlighted code as a string instead of printing it out. If the second parameter is not set to TRUE then highlight_string() will return TRUE on success, FALSE on failure.
注: The return parameter became available in PHP 4.2.0. Before this time it behaved like the default, which is FALSE
字符串语法加亮
说明
Highlight_string()函数输出一个按PHP语法彩色定义加亮后的译本。
如果第二个参数为TRUE,那么函数将返回一个加亮代码的字符串,而不是直接显示它。
如果第二个参数没有设为TRUE,那么函数在执行成功将返回TRUE,失败则返回FALSE。
注:第二个返回参数从PHP 4.2.0之后才可用。在这以前它按默认值FALSE运行。
highlight_file()则是用语法加亮解析一个PHP文件。
chinaboy译