mirror of
https://github.com/php/doc-zh.git
synced 2026-03-25 15:42:15 +01:00
* Update constants.xml * Update setup.xml * Update stripslashes.xml * Move utf8-decode.xml * Rename utf8-encode.xml * Update number-format.xml * Update number-format.xml * Update number-format.xml * Update lcfirst.xml * Update strnatcasecmp.xml * Update strcoll.xml * Update strrchr.xml * Update strcoll.xml * Update strrchr.xml
99 lines
2.8 KiB
XML
99 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- $Revision$ -->
|
||
<!-- EN-Revision: e095023e408c8cb6378ae16bb6870343a3946919 Maintainer: daijie Status: ready -->
|
||
<!-- CREDITS: mowangjuanzi -->
|
||
<refentry xml:id="function.strcoll" xmlns="http://docbook.org/ns/docbook">
|
||
<refnamediv>
|
||
<refname>strcoll</refname>
|
||
<refpurpose>基于区域设置的字符串比较</refpurpose>
|
||
</refnamediv>
|
||
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<methodsynopsis>
|
||
<type>int</type><methodname>strcoll</methodname>
|
||
<methodparam><type>string</type><parameter>string1</parameter></methodparam>
|
||
<methodparam><type>string</type><parameter>string2</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
注意该比较区分大小写。和 <function>strcmp</function> 不同,该函数不是二进制安全的。
|
||
</para>
|
||
<para>
|
||
<function>strcoll</function> 使用当前区域设置进行比较。如果当前区域为 C 或 POSIX,该函数等同于 <function>strcmp</function>。
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
<para>
|
||
<variablelist>
|
||
<varlistentry>
|
||
<term><parameter>string1</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
第一个字符串。
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
<varlistentry>
|
||
<term><parameter>string2</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
第二个字符串。
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
如果 <parameter>string1</parameter> 小于
|
||
<parameter>string2</parameter> 返回 < 0;
|
||
如果 <parameter>string1</parameter>
|
||
大于 <parameter>string2</parameter>
|
||
返回 > 0;如果两者相等,返回 0。
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="seealso">
|
||
&reftitle.seealso;
|
||
<para>
|
||
<simplelist>
|
||
<member><function>preg_match</function></member>
|
||
<member><function>strcmp</function></member>
|
||
<member><function>strcasecmp</function></member>
|
||
<member><function>substr</function></member>
|
||
<member><function>stristr</function></member>
|
||
<member><function>strncasecmp</function></member>
|
||
<member><function>strncmp</function></member>
|
||
<member><function>strstr</function></member>
|
||
<member><function>setlocale</function></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:"~/.phpdoc/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
|
||
-->
|