2004-05-02 15:47:00 +00:00
|
|
|
<?xml version='1.0' encoding='iso-8859-1'?>
|
2007-06-20 22:25:43 +00:00
|
|
|
<!-- $Revision: 1.8 $ -->
|
|
|
|
<refentry xml:id="function.php-strip-whitespace" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2004-05-02 15:47:00 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>php_strip_whitespace</refname>
|
2007-02-19 00:04:48 +00:00
|
|
|
<refpurpose>Return source with stripped comments and whitespace</refpurpose>
|
2004-05-02 15:47:00 +00:00
|
|
|
</refnamediv>
|
2007-02-19 00:04:49 +00:00
|
|
|
|
|
|
|
<refsect1 role="description">
|
2004-08-10 23:28:14 +00:00
|
|
|
&reftitle.description;
|
2004-05-02 15:47:00 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>php_strip_whitespace</methodname>
|
2004-08-10 23:28:14 +00:00
|
|
|
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
|
2004-05-02 15:47:00 +00:00
|
|
|
</methodsynopsis>
|
2004-08-10 23:28:14 +00:00
|
|
|
<para>
|
|
|
|
Returns the PHP source code in <parameter>filename</parameter> 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.
|
2004-08-11 00:21:26 +00:00
|
|
|
This is similar to using <command>php -w</command> from the
|
|
|
|
<link linkend="features.commandline">commandline</link>.
|
2004-08-10 23:28:14 +00:00
|
|
|
</para>
|
2007-02-19 00:04:49 +00:00
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>filename</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Path to the PHP file.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
The stripped source code will be returned on success, or an empty string
|
|
|
|
on failure.
|
|
|
|
</para>
|
2004-08-11 00:00:48 +00:00
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
This function works as described as of PHP 5.0.1. Before this it would
|
|
|
|
only return an empty string. For more information on this bug and its
|
|
|
|
prior behavior, see bug report
|
2007-06-20 22:25:43 +00:00
|
|
|
<link xlink:href="&url.php.bugs;29606">#29606</link>.
|
2004-08-11 00:00:48 +00:00
|
|
|
</para>
|
|
|
|
</note>
|
2004-08-10 23:28:14 +00:00
|
|
|
</refsect1>
|
2007-02-19 00:04:49 +00:00
|
|
|
|
|
|
|
<refsect1 role="examples">
|
2004-08-10 23:28:14 +00:00
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>php_strip_whitespace</function> example</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
// PHP comment here
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Another PHP comment
|
|
|
|
*/
|
2004-05-02 15:47:00 +00:00
|
|
|
|
2004-09-07 12:21:48 +00:00
|
|
|
echo php_strip_whitespace(__FILE__);
|
2004-08-10 23:28:14 +00:00
|
|
|
// Newlines are considered whitespace, and are removed too:
|
|
|
|
do_nothing();
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
&example.outputs;
|
|
|
|
<screen>
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2004-09-07 12:21:48 +00:00
|
|
|
echo php_strip_whitespace(__FILE__); do_nothing(); ?>
|
2004-08-10 23:28:14 +00:00
|
|
|
]]>
|
|
|
|
</screen>
|
|
|
|
<para>
|
|
|
|
Notice the PHP comments are gone, as are the whitespace and newline
|
|
|
|
after the first echo statement.
|
|
|
|
</para>
|
|
|
|
</example>
|
|
|
|
</para>
|
2004-05-02 15:47:00 +00:00
|
|
|
</refsect1>
|
2007-02-19 00:04:49 +00:00
|
|
|
|
2004-05-02 15:47:00 +00:00
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|