mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-27 18:32:09 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@174341 c90b9560-bf6c-de11-be94-00142212c4b1
105 lines
2.5 KiB
XML
105 lines
2.5 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.19 $ -->
|
|
<!-- EN-Revision: 1.13 Maintainer: poz Status: ready -->
|
|
<refentry id="function.natsort">
|
|
<refnamediv>
|
|
<refname>natsort</refname>
|
|
<refpurpose>
|
|
Trie un tableau avec l'algorithme à "ordre naturel"
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>natsort</methodname>
|
|
<methodparam><type>array</type><parameter role="reference">array</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>natsort</function> implémente un algorithme
|
|
de tri qui traite les chaînes alpha-numériques du tableau
|
|
<parameter>array</parameter>
|
|
comme un être humain tout en conservant la relation clé/valeur. C'est ce qui
|
|
est appelé l'"ordre naturel". Un exemple de la différence de
|
|
traitement entre un tel algorithme et un algorithme de tri de
|
|
chaînes (comme lorsqu'on utilise <function>sort</function>)
|
|
est illustré ci-dessous :
|
|
</para>
|
|
<para>
|
|
&return.success;
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Exemple avec <function>natsort</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$array1 = $array2 = array ("img12.png", "img10.png", "img2.png", "img1.png");
|
|
|
|
sort($array1);
|
|
echo "Tri standard\n";
|
|
print_r($array1);
|
|
|
|
natsort($array2);
|
|
echo "Tri en ordre naturel\n";
|
|
print_r($array2);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Tri standard
|
|
Array
|
|
(
|
|
[0] => img1.png
|
|
[1] => img10.png
|
|
[2] => img12.png
|
|
[3] => img2.png
|
|
)
|
|
Tri en ordre naturel
|
|
Array
|
|
(
|
|
[3] => img1.png
|
|
[2] => img2.png
|
|
[1] => img10.png
|
|
[0] => img12.png
|
|
)
|
|
]]>
|
|
</screen>
|
|
<para>
|
|
Pour plus de détails, rendez-vous sur le site de
|
|
Martin Pool :
|
|
<ulink url="&url.strnatcmp;"><literal>Natural Order String Comparison</literal></ulink>.
|
|
</para>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
Voir aussi
|
|
<function>natcasesort</function>,
|
|
<function>strnatcmp</function> et
|
|
<function>strnatcasecmp</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
|
|
-->
|