mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-04-28 03:03:19 +02:00
5c21325713
Generate ext/intl methodsynopses from stubs (Spoofchecker, Transliterator)
107 lines
2.8 KiB
XML
107 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: c67537e2d465eba71540107966fab3607d057fbb Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
<refentry xml:id="transliterator.listids" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>Transliterator::listIDs</refname>
|
|
<refname>transliterator_list_ids</refname>
|
|
<refpurpose>Récupère les identifiants de ce translittérateur</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<para>&style.oop;</para>
|
|
<methodsynopsis role="oop">
|
|
<modifier>public</modifier> <modifier>static</modifier> <type class="union"><type>array</type><type>false</type></type><methodname>Transliterator::listIDs</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>&style.procedural;</para>
|
|
<methodsynopsis role="procedural">
|
|
<type class="union"><type>array</type><type>false</type></type><methodname>transliterator_list_ids</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
Retourne un tableau contenant tous les identifiants enregistrés
|
|
pour ce translittérateur.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
&no.function.parameters;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Un &array; contenant tous les identifiants enregistrés pour ce translittérateur
|
|
en cas de succès&return.falseforfailure;.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<example xml:id="transliterator.listids.example.basic">
|
|
<title>Récupération des identifiants transliterator enregistrés</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
print_r(Transliterator::listIDs());
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[0] => ASCII-Latin
|
|
[1] => Accents-Any
|
|
[2] => Amharic-Latin/BGN
|
|
[3] => Any-Accents
|
|
[4] => Any-Publishing
|
|
...
|
|
[650] => Any-ps_Latn/BGN
|
|
[651] => Any-tk/BGN
|
|
[652] => Any-ch_FONIPA
|
|
[653] => Any-cs_FONIPA
|
|
[654] => Any-cy_FONIPA
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><methodname>Transliterator::getErrorMessage</methodname></member>
|
|
<member><methodname>Transliterator::transliterate</methodname></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
|
|
-->
|