PHP highlight_file() 函數(shù)
PHP highlight_file() 函數(shù)
實例
對測試文件("test.php")進行 PHP 語法高亮顯示:
<html>
<body>
<?php
highlight_file("test.php");
?>
</body>
</html>
<body>
<?php
highlight_file("test.php");
?>
</body>
</html>
上面代碼的瀏覽器輸出如下(取決于文件中的內(nèi)容):
<html>
<body>
<?php
echo ("test.php");
?>
</body>
</html>
<body>
<?php
echo ("test.php");
?>
</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.php"</span><span style="color: #007700">);
<br /></span><span style="color: #0000BB">?>
<br /></span></body>
<br /></html></span>
</code>
</body>
</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.php"</span><span style="color: #007700">);
<br /></span><span style="color: #0000BB">?>
<br /></span></body>
<br /></html></span>
</code>
</body>
</html>
運行實例 ?
定義和用法
highlight_file() 函數(shù)對文件進行 PHP 語法高亮顯示。語法通過使用 HTML 標(biāo)簽進行高亮。
提示:用于高亮的顏色可通過 php.ini 文件進行設(shè)置或者通過調(diào)用 ini_set() 函數(shù)進行設(shè)置。
注釋:當(dāng)使用該函數(shù)時,整個文件都將被顯示,包括密碼和其他敏感信息!
語法
highlight_file(filename,return)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要顯示的文件。 |
return | 可選。如果該參數(shù)設(shè)置為 TRUE,該函數(shù)將以字符串形式返回高亮顯示的代碼,而不是直接進行輸出。默認是 FALSE。 |
技術(shù)細節(jié)
返回值: | 如果 return 參數(shù)設(shè)置為 TRUE,該函數(shù)將以字符串形式返回高亮顯示的代碼,而不是直接進行輸出。否則,如果成功則返回 TRUE,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 自 PHP 4.2.1 起,該函數(shù)現(xiàn)在也受 safe_mode 和 open_basedir 影響。然而,在 PHP 5.4 中 safe_mode 被移除。 在 PHP 4.2.0 中新增了 return 參數(shù)。 |

相關(guān)文章
- PHP 數(shù)據(jù)類型
- PHP Switch 語句
- PHP 面向?qū)ο?/a>
- PHP 多維數(shù)組
- PHP 包含文件 include 和 require 語句
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP each() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP HTTP 函數(shù)
- PHP Libxml 函數(shù)