PHP show_source() 函數(shù)
PHP show_source() 函數(shù)
實例
對測試文件("test.php")進(jìn)行 PHP 語法高亮顯示:
<html>
<body>
<?php
show_source("test.php");
?>
</body>
</html>
<body>
<?php
show_source("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>
運行實例 ?
定義和用法
show_source() 函數(shù)對文件進(jìn)行 PHP 語法高亮顯示。語法通過使用 HTML 標(biāo)簽進(jìn)行高亮。
用于高亮的顏色可通過 php.ini 文件進(jìn)行設(shè)置或者通過調(diào)用 ini_set() 函數(shù)進(jìn)行設(shè)置。
show_source() 是 highlight_file() 的別名。
注釋:當(dāng)使用該函數(shù)時,整個文件都將被顯示,包括密碼和其他敏感信息!
語法
show_source(filename,return)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要顯示的文件。 |
return | 可選。如果該參數(shù)設(shè)置為 TRUE,該函數(shù)將以字符串形式返回高亮顯示的代碼,而不是直接進(jìn)行輸出。默認(rèn)是 FALSE。 |
技術(shù)細(xì)節(jié)
返回值: | 如果 return 參數(shù)設(shè)置為 TRUE,該函數(shù)將以字符串形式返回高亮顯示的代碼,而不是直接進(jìn)行輸出。否則,如果成功則返回 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 簡介
- PHP 常量
- PHP For 循環(huán)
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP Secure E-mails
- PHP 異常處理
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP Filter 函數(shù)
- PHP 5 Math 函數(shù)
- PHP 5 MySQLi 函數(shù)