mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-04-24 09:08:13 +02:00
286094797c
Sync Random extension with EN
122 lines
3.4 KiB
XML
122 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 9eb92e5c1851d7838ba02e88e7a0e5bb5c86880a Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
<refentry xml:id="function.srand" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>srand</refname>
|
|
<refpurpose>Initialise le générateur de nombres aléatoires</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>void</type><methodname>srand</methodname>
|
|
<methodparam choice="opt"><type class="union"><type>int</type><type>null</type></type><parameter>seed</parameter><initializer>&null;
|
|
</initializer></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>mode</parameter><initializer><constant>MT_RAND_MT19937</constant></initializer></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>srand</function> initialise le générateur de
|
|
nombres aléatoires avec <parameter>seed</parameter>,
|
|
ou avec une valeur aléatoire si <parameter>seed</parameter> est
|
|
<literal>0</literal>.
|
|
</para>
|
|
|
|
¬e.randomseed;
|
|
&caution.mt19937-tiny-seed;
|
|
<note><simpara>
|
|
Depuis PHP 7.1.0, <function>srand</function> est un alias de <function>mt_srand</function>.
|
|
</simpara>
|
|
</note>
|
|
|
|
</refsect1>
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>seed</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Remplit l'état avec des valeurs générées par un générateur congruentiel linéaire
|
|
qui a été initialisé avec <parameter>seed</parameter> interprété comme un entier non signé
|
|
de 32 bits.
|
|
</para>
|
|
<para>
|
|
Si <parameter>seed</parameter> est omis ou &null;, un entier non signé
|
|
de 32 bits sera utilisé de manière aléatoire.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
&return.void;
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="changelog">
|
|
&reftitle.changelog;
|
|
<para>
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>&Version;</entry>
|
|
<entry>&Description;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>8.3.0</entry>
|
|
<entry>
|
|
<parameter>seed</parameter> est désormais nullable.
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry>7.1.0</entry>
|
|
<entry>
|
|
<function>srand</function> <link linkend="migration71.incompatible.rand-srand-aliases">est devenu</link> un alias de <function>mt_srand</function>.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>rand</function></member>
|
|
<member><function>getrandmax</function></member>
|
|
<member><function>mt_srand</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
|
|
-->
|