PHP.nl

php_strip_whitespace

php_strip_whitespace

Return source with stripped comments and whitespace

string **php_strip_whitespace** string $filename

Returns the PHP source code in with PHP comments and whitespace removed. This may be useful for determining the amount of actual code in your scripts compared with the amount of comments. This is similar to using from the . filenamecommandline

filenamePath to the PHP file.

The stripped source code will be returned on success, or an empty string on failure.

Opmerking: > This function respects the value of the

ini directive.

short_open_tag

Voorbeeld: example

<?php
// PHP comment here

/*
 * Another PHP comment
 */

echo        php_strip_whitespace(__FILE__);
// Newlines are considered whitespace, and are removed too:
do_nothing();
?>
<?php
 echo php_strip_whitespace(__FILE__); do_nothing(); ?>

Notice the PHP comments are gone, as are the whitespace and newline after the first echo statement.