2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2004-12-29 17:24:37 +00:00
|
|
|
<!-- $Revision: 1.8 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.trim">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>trim</refname>
|
|
|
|
<refpurpose>
|
2004-12-29 17:24:37 +00:00
|
|
|
Strip whitespace (or other characters) from the beginning and end of a string
|
2002-04-15 00:12:54 +00:00
|
|
|
</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>trim</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>str</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>charlist</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
This function returns a string with whitespace stripped from the
|
|
|
|
beginning and end of <parameter>str</parameter>.
|
|
|
|
Without the second parameter,
|
|
|
|
<function>trim</function> will strip these characters:
|
|
|
|
<!-- sorted by importance. Printed 3 times: trim, ltrim, rtrim -->
|
|
|
|
<itemizedlist>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
" " (<acronym>ASCII</acronym> <literal>32</literal>
|
|
|
|
(<literal>0x20</literal>)), an ordinary space.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
"\t" (<acronym>ASCII</acronym> <literal>9</literal>
|
|
|
|
(<literal>0x09</literal>)), a tab.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
"\n" (<acronym>ASCII</acronym> <literal>10</literal>
|
|
|
|
(<literal>0x0A</literal>)), a new line (line feed).
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
"\r" (<acronym>ASCII</acronym> <literal>13</literal>
|
|
|
|
(<literal>0x0D</literal>)), a carriage return.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<simpara>
|
|
|
|
"\0" (<acronym>ASCII</acronym> <literal>0</literal>
|
|
|
|
(<literal>0x00</literal>)), the <literal>NUL</literal>-byte.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<simpara> <!-- not \v, since not supported by PHP -->
|
|
|
|
"\x0B" (<acronym>ASCII</acronym> <literal>11</literal>
|
|
|
|
(<literal>0x0B</literal>)), a vertical tab.
|
|
|
|
</simpara>
|
|
|
|
</listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
You can also specify the characters you want to strip, by means
|
|
|
|
of the <parameter>charlist</parameter> parameter.
|
|
|
|
Simply list all characters that you want to be stripped. With
|
|
|
|
<literal>..</literal> you can specify a range of characters.
|
|
|
|
</para>
|
|
|
|
<example>
|
|
|
|
<title>Usage example of <function>trim</function></title>
|
2004-08-04 21:03:59 +00:00
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$text = "\t\tThese are a few words :) ... ";
|
2004-04-27 21:45:48 +00:00
|
|
|
|
|
|
|
echo trim($text); // "These are a few words :) ..."
|
2004-04-29 15:01:54 +00:00
|
|
|
echo trim($text, " \t."); // "These are a few words :)"
|
2004-04-27 21:45:48 +00:00
|
|
|
|
2002-04-15 00:12:54 +00:00
|
|
|
// trim the ASCII control characters at the beginning and end of $binary
|
|
|
|
// (from 0 to 31 inclusive)
|
2004-04-27 21:45:48 +00:00
|
|
|
$clean = trim($binary, "\x00..\x1F");
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
]]>
|
2004-08-04 21:03:59 +00:00
|
|
|
</programlisting>
|
2002-04-15 00:12:54 +00:00
|
|
|
</example>
|
2004-04-27 21:45:48 +00:00
|
|
|
<note>
|
|
|
|
<simpara>
|
|
|
|
The optional <parameter>charlist</parameter> parameter was
|
|
|
|
added in PHP 4.1.0
|
|
|
|
</simpara>
|
|
|
|
</note>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
|
|
|
See also <function>ltrim</function> and <function>rtrim</function>.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</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
|
|
|
|
-->
|