<?xml version="1.0" encoding="utf-8"?> <!-- $Revision: 1.5 $ --> <refentry xml:id="function.grapheme-strstr" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <refnamediv> <refname>grapheme_strstr</refname> <refpurpose>Returns part of haystack string from the first occurrence of needle to the end of haystack.</refpurpose> </refnamediv> <refsect1 role="description"> &reftitle.description; <para>Procedural style</para> <methodsynopsis> <type>string</type><methodname>grapheme_strstr</methodname> <methodparam><type>string</type><parameter>haystack</parameter></methodparam> <methodparam><type>string</type><parameter>needle</parameter></methodparam> <methodparam choice='opt'><type>bool</type><parameter>before_needle</parameter></methodparam> </methodsynopsis> <para> Returns part of haystack string from the first occurrence of needle to the end of haystack. </para> </refsect1> <refsect1 role="parameters"> &reftitle.parameters; <para> <variablelist> <varlistentry> <term><parameter>haystack</parameter></term> <listitem> <para> The input string. Must be valid UTF-8. </para> </listitem> </varlistentry> <varlistentry> <term><parameter>needle</parameter></term> <listitem> <para> The string to look for. Must be valid UTF-8. </para> </listitem> </varlistentry> <varlistentry> <term><parameter>before_needle</parameter></term> <listitem> <para> If TRUE (the default is FALSE), grapheme_strstr() returns the part of the haystack before the first occurence of the needle. </para> </listitem> </varlistentry> </variablelist> </para> </refsect1> <refsect1 role="returnvalues"> &reftitle.returnvalues; <para> Returns the portion of string, or FALSE if needle is not found. </para> </refsect1> <refsect1 role="examples"> &reftitle.examples; <example> <title><function>grapheme_strstr</function> example</title> <programlisting role="php"> <![CDATA[ <?php $char_a_ring_nfd = "a\xCC\x8A"; // 'LATIN SMALL LETTER A WITH RING ABOVE' (U+00E5) normalization form "D" $char_o_diaeresis_nfd = "o\xCC\x88"; // 'LATIN SMALL LETTER O WITH DIAERESIS' (U+00F6) normalization form "D" print urlencode(grapheme_stristr( $char_a_ring_nfd . $char_o_diaeresis_nfd . $char_a_ring_nfd, $char_o_diaeresis_nfd)); ?> ]]> </programlisting> </example> &example.outputs; <screen> <![CDATA[ o%CC%88a%CC%8A ]]> </screen> </refsect1> <refsect1 role="seealso"> &reftitle.seealso; <para> <simplelist> <member><function>grapheme_stristr</function></member> <member><function>grapheme_stripos</function></member> <member><function>grapheme_strpos</function></member> <member><function>grapheme_strripos</function></member> <member><function>grapheme_strrpos</function></member> <member> <link xlink:href="&uri.unicode.graphemes;"> Unicode Text Segmentation: Grapheme Cluster Boundaries </link> </member> </simplelist> </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 -->