返回 "test.html" 文件的源代码,并删除 PHP 注释和空格:
<?php
// PHP comment
/*
* Another PHP comment
*/
echo php_strip_whitespace ("test.html");
?>
如果您在浏览器窗口中选择"View source",它将如下所示:
<?php
echo php_strip_whitespace ("test.html"); ?>
php_strip_whitespace() 函数返回指定文件的源代码,其中删除了 PHP 注释和空格。
php_strip_whitespace(
filename)
Parameter | Description |
---|---|
filename | Required. Specifies the file to strip |
返回值: | 成功时返回剥离的源代码,失败时返回空字符串。笔记:该函数仅在 PHP 5.0.1 之前的版本上返回空字符串。 |
---|---|
PHP 版本: | 5+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!