首页  >  文章  >  后端开发  >  PHP中的php_strip_whitespace()函数

PHP中的php_strip_whitespace()函数

PHPz
PHPz转载
2023-08-27 10:57:05886浏览

PHP中的php_strip_whitespace()函数

php_strip_whitespace()函数返回被剥离注释和空白字符的源代码。

Syntax

php_strip_whitespace(file_path)

参数

  • file_path − The path of file.

返回

The php_strip_whitespace() function returns stripped source code on success.

Example

的中文翻译为:

示例

<?php
   /*
      * Demo comment
   */
   echo php_strip_whitespace ("new.php");
?>

上述代码删除了所有注释和空白。

以上是PHP中的php_strip_whitespace()函数的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除