2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2007-09-20 20:55:38 +00:00
|
|
|
<!-- $Revision: 1.4 $ -->
|
|
|
|
<refentry xml:id="function.mb-substr" xmlns="http://docbook.org/ns/docbook">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>mb_substr</refname>
|
|
|
|
<refpurpose>Get part of string</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>mb_substr</methodname>
|
|
|
|
<methodparam><type>string</type><parameter>str</parameter></methodparam>
|
|
|
|
<methodparam><type>int</type><parameter>start</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>int</type><parameter>length</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>string</type><parameter>encoding</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
<function>mb_substr</function> returns the portion of
|
|
|
|
<parameter>str</parameter> specified by the
|
|
|
|
<parameter>start</parameter> and
|
|
|
|
<parameter>length</parameter> parameters.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<function>mb_substr</function> performs multi-byte safe
|
|
|
|
<function>substr</function> operation based on
|
|
|
|
number of characters. Position is
|
|
|
|
counted from the beginning of
|
|
|
|
<parameter>str</parameter>. First character's position is
|
|
|
|
0. Second character position is 1, and so on.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
If <parameter>encoding</parameter> is omitted, internal encoding
|
|
|
|
is assumed.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<parameter>encoding</parameter> is character encoding. If it is
|
|
|
|
omitted, internal character encoding is used.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
See also <function>mb_strcut</function>,
|
|
|
|
<function>mb_internal_encoding</function>.
|
|
|
|
</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
|
|
|
|
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
|
|
|
|
-->
|