mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-25 09:22:07 +01:00
171 lines
5.0 KiB
XML
171 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 20216b916ed583938672cd09c2c2f430351430d1 Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
|
|
<refentry xml:id="function.variant-cmp" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>variant_cmp</refname>
|
|
<refpurpose>Compare deux variants</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>variant_cmp</methodname>
|
|
<methodparam><type>mixed</type><parameter>left</parameter></methodparam>
|
|
<methodparam><type>mixed</type><parameter>right</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>locale_id</parameter><initializer><constant>LOCALE_SYSTEM_DEFAULT</constant></initializer></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>flags</parameter><initializer>0</initializer></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Compare <parameter>left</parameter> avec <parameter>right</parameter>.
|
|
</para>
|
|
<para>
|
|
Cette fonction ne comparera que des valeurs scalaires, pas de tableaux
|
|
ni d'enregistrements variants.
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>left</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
L'opérande de gauche.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>right</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
L'opérande de droite.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>locale_id</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Locale Identifier valide à utiliser lors des comparaisons
|
|
des chaînes (cela affecte la collation de la chaîne).
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>flags</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
<parameter>flags</parameter> peut être une ou plusieurs des valeurs suivantes,
|
|
jointes avec des OR, et affecte les comparaisons de chaînes :
|
|
<table>
|
|
<title>Options de comparaison Variant</title>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>Valeur</entry>
|
|
<entry>Signification</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry><constant>NORM_IGNORECASE</constant></entry>
|
|
<entry>Compare avec sensibilité à la casse</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>NORM_IGNORENONSPACE</constant></entry>
|
|
<entry>Ignore les caractères non-espaçants</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>NORM_IGNORESYMBOLS</constant></entry>
|
|
<entry>Ignore les symboles</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>NORM_IGNOREWIDTH</constant></entry>
|
|
<entry>Ignore la taille de la chaîne</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>NORM_IGNOREKANATYPE</constant></entry>
|
|
<entry>Ignore le type Kana</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>NORM_IGNOREKASHIDA</constant></entry>
|
|
<entry>Ignore les caractères arabes kashida</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
&com.variant-arith;
|
|
</refsect1>
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Retourne une des valeurs suivantes :
|
|
<table>
|
|
<title>Résultats des comparaisons sur variants</title>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>Valeur</entry>
|
|
<entry>Signification</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry><constant>VARCMP_LT</constant></entry>
|
|
<entry><parameter>left</parameter> est plus petit que
|
|
<parameter>right</parameter>
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>VARCMP_EQ</constant></entry>
|
|
<entry><parameter>left</parameter> est égal à
|
|
<parameter>right</parameter>
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>VARCMP_GT</constant></entry>
|
|
<entry><parameter>left</parameter> est plus grand que
|
|
<parameter>right</parameter>
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>VARCMP_NULL</constant></entry>
|
|
<entry><parameter>left</parameter>,
|
|
<parameter>right</parameter> ou les deux sont &null;
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
</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
|
|
-->
|