php_strip_whitespace()是PHP中的内置函数,用于从源代码中删除所有注释和空格。
用法:
string php_strip_whitespace ( $file )
参数:php_strip_whitespace()函数接受单个参数$file。它是指定文件的必需参数。
返回值:成功删除注释和空格后,它将返回$file的源代码,否则将返回空字符串。
异常:
- 它适用于PHP 5.0.1和更高版本,在以前的版本中返回空字符串。
- 该函数的工作方式类似于php -w命令行。
以下示例程序旨在说明PHP中的php_strip_whitespace()函数:
程序:
<?php
// Simple program to remove comment
// using php_strip_whitespace function.
// function to calculate fibonacci number
function fib($n)
{
if ($n <= 1)
return $n;
return fib($n - 1) + fib($n - 2);
}
// Driver Code
$n = 9;
fib($n);
/*
* One more multiline comment
*/
echo php_strip_whitespace(__FILE__);
// This line also removed
?>
输出:
<?php function fib($n) { if ($n <= 1) return $n; return fib($n - 1) + fib($n - 2); } $n = 9; fib($n); echo php_strip_whitespace(__FILE__); ?>
参考:http://php.net/manual/en/function.php-strip-whitespace.php
相关用法
- PHP abs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP end()用法及代码示例
- PHP sin( )用法及代码示例
- PHP each()用法及代码示例
- PHP Ds\Map map()用法及代码示例
- PHP Ds\Map last()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- PHP pi( )用法及代码示例
- PHP pow( )用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP tan( )用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | php_strip_whitespace() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。