- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP strip_whitespace() 函数
实例
返回已删除 PHP 注释以及空白字符的 "test.php" 文件的源代码:
<?php
// PHP comment
/*
* Another PHP comment
*/
echo php_strip_whitespace ("test.php");
?>
// PHP comment
/*
* Another PHP comment
*/
echo php_strip_whitespace ("test.php");
?>
如果您在浏览器窗口选择"查看源代码",则如下所示:
<?php
echo php_strip_whitespace ("test.php"); ?>
echo php_strip_whitespace ("test.php"); ?>
定义和用法
strip_whitespace() 函数返回已删除 PHP 注释以及空白字符的源代码文件。
语法
strip_whitespace(filename)
参数 | 描述 |
---|---|
filename | 必需。规定文件名。 |
技术细节
返回值: | 如果成功则返回已删除 PHP 注释以及空白字符的源代码,如果失败则返回空。注释:在 PHP 5.0.1 之前的版本,该函数只返回空字符串。 |
---|---|
PHP 版本: | 5+ |
PHP Misc 参考手册
上一篇:PHP pack() 函数
关注微信小程序
扫描二维码
程序员编程王