mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-24 04:48:55 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@78496 c90b9560-bf6c-de11-be94-00142212c4b1
70 lines
2.4 KiB
XML
70 lines
2.4 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.2 $ -->
|
|
<!-- splitted from ./en/functions/mbstring.xml, last change in rev 1.1 -->
|
|
<refentry id="function.mb-strrpos">
|
|
<refnamediv>
|
|
<refname>mb_strrpos</refname>
|
|
<refpurpose>
|
|
Find position of last occurrence of a string in a string
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>mb_strrpos</methodname>
|
|
<methodparam><type>string</type><parameter>haystack</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>needle</parameter></methodparam>
|
|
<methodparam choice="opt"><type>string</type><parameter>encoding</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>mb_strrpos</function> returns the numeric position of
|
|
the last occurrence of <parameter>needle</parameter> in the
|
|
<parameter>haystack</parameter> string. If
|
|
<parameter>needle</parameter> is not found, it returns &false;.
|
|
</para>
|
|
<para>
|
|
<function>mb_strrpos</function> performs multi-byte safe
|
|
<function>strrpos</function> operation based on
|
|
number of characters. <parameter>needle</parameter> position is
|
|
counted from the beginning of
|
|
<parameter>haystack</parameter>. First character's position is
|
|
0. Second character position is 1.
|
|
</para>
|
|
<para>
|
|
If <parameter>encoding</parameter> is omitted, internal encoding
|
|
is assumed. <function>mb_strrpos</function> accepts
|
|
<literal>string</literal> for <parameter>needle</parameter> where
|
|
<function>strrpos</function> accepts only character.
|
|
</para>
|
|
<para>
|
|
<parameter>encoding</parameter> is character encoding. If it is
|
|
not specified, internal character encoding is used.
|
|
</para>
|
|
<para>
|
|
See also <function>mb_strpos</function>,
|
|
<function>mb_internal_encoding</function>,
|
|
<function>strrpos</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
|
|
-->
|