2007-12-07 01:18:14 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 09:08:43 +00:00
|
|
|
<!-- $Revision$ -->
|
2020-12-03 08:54:27 +00:00
|
|
|
<refentry xml:id="function.strtok" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
2007-12-07 01:18:14 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>strtok</refname>
|
|
|
|
<refpurpose>Tokenize string</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<methodsynopsis>
|
2020-12-03 08:54:27 +00:00
|
|
|
<type class="union"><type>string</type><type>false</type></type><methodname>strtok</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>string</parameter></methodparam>
|
2007-12-07 01:18:14 +00:00
|
|
|
<methodparam><type>string</type><parameter>token</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
2020-12-03 08:54:27 +00:00
|
|
|
<simpara>Alternative signature (not supported with named arguments):</simpara>
|
2008-11-04 13:27:54 +00:00
|
|
|
<methodsynopsis>
|
2020-12-03 08:54:27 +00:00
|
|
|
<type class="union"><type>string</type><type>false</type></type><methodname>strtok</methodname>
|
2008-11-04 13:27:54 +00:00
|
|
|
<methodparam><type>string</type><parameter>token</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
2007-12-07 01:18:14 +00:00
|
|
|
<para>
|
2020-12-03 08:54:27 +00:00
|
|
|
<function>strtok</function> splits a string (<parameter>string</parameter>)
|
2007-12-07 01:18:14 +00:00
|
|
|
into smaller strings (tokens), with each token being delimited by any
|
2021-01-01 21:39:46 +00:00
|
|
|
character from <parameter>token</parameter>.
|
2007-12-07 01:18:14 +00:00
|
|
|
That is, if you have a string like "This is an example string" you
|
|
|
|
could tokenize this string into its individual words by using the
|
2021-01-01 21:39:46 +00:00
|
|
|
space character as the <parameter>token</parameter>.
|
2007-12-07 01:18:14 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2021-01-01 21:39:46 +00:00
|
|
|
Note that only the first call to strtok uses the <parameter>string</parameter> argument.
|
|
|
|
Every subsequent call to strtok only needs the <parameter>token</parameter> to use, as
|
2007-12-07 01:18:14 +00:00
|
|
|
it keeps track of where it is in the current string. To start
|
|
|
|
over, or to tokenize a new string you simply call strtok with the
|
2021-01-01 21:39:46 +00:00
|
|
|
<parameter>string</parameter> argument again to initialize it. Note that you may put
|
|
|
|
multiple tokens in the <parameter>token</parameter> parameter. The string will be
|
|
|
|
tokenized when any one of the characters in the <parameter>token</parameter> argument is
|
2007-12-07 01:18:14 +00:00
|
|
|
found.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="parameters">
|
|
|
|
&reftitle.parameters;
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
2020-12-03 08:54:27 +00:00
|
|
|
<term><parameter>string</parameter></term>
|
2007-12-07 01:18:14 +00:00
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
The <type>string</type> being split up into smaller strings (tokens).
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><parameter>token</parameter></term>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2020-12-03 08:54:27 +00:00
|
|
|
The delimiter used when splitting up <parameter>string</parameter>.
|
2007-12-07 01:18:14 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
2020-12-03 08:54:27 +00:00
|
|
|
A <type>string</type> token, or &false; if no more tokens are available.
|
2007-12-07 01:18:14 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>strtok</function> example</title>
|
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
2003-05-30 16:36:18 +00:00
|
|
|
<?php
|
2002-04-15 00:12:54 +00:00
|
|
|
$string = "This is\tan example\nstring";
|
|
|
|
/* Use tab and newline as tokenizing characters as well */
|
2003-12-15 16:55:22 +00:00
|
|
|
$tok = strtok($string, " \n\t");
|
2005-05-08 08:43:35 +00:00
|
|
|
|
|
|
|
while ($tok !== false) {
|
2003-12-15 16:55:22 +00:00
|
|
|
echo "Word=$tok<br />";
|
2002-04-15 00:12:54 +00:00
|
|
|
$tok = strtok(" \n\t");
|
|
|
|
}
|
2003-05-30 16:36:18 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2007-12-07 01:18:14 +00:00
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<example>
|
2016-12-05 10:17:07 +00:00
|
|
|
<title><function>strtok</function> behavior on empty part found</title>
|
2007-12-07 01:18:14 +00:00
|
|
|
<programlisting role="php">
|
2002-04-15 00:12:54 +00:00
|
|
|
<![CDATA[
|
2003-05-30 16:36:18 +00:00
|
|
|
<?php
|
|
|
|
$first_token = strtok('/something', '/');
|
|
|
|
$second_token = strtok('/');
|
2003-12-15 16:55:22 +00:00
|
|
|
var_dump($first_token, $second_token);
|
2003-05-30 16:36:18 +00:00
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
2007-12-07 01:18:14 +00:00
|
|
|
</programlisting>
|
|
|
|
&example.outputs;
|
|
|
|
<screen>
|
2003-12-15 16:55:22 +00:00
|
|
|
<![CDATA[
|
|
|
|
string(9) "something"
|
|
|
|
bool(false)
|
|
|
|
]]>
|
2007-12-07 01:18:14 +00:00
|
|
|
</screen>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="notes">
|
|
|
|
&reftitle.notes;
|
|
|
|
|
|
|
|
&return.falseproblem;
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>split</function></member>
|
|
|
|
<member><function>explode</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- 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
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2002-04-15 00:12:54 +00:00
|
|
|
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
|
|
|
|
-->
|