mirror of
https://github.com/php/doc-es.git
synced 2026-03-26 08:22:08 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@337500 c90b9560-bf6c-de11-be94-00142212c4b1
88 lines
2.3 KiB
XML
88 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 247d016f43921ad243636c5e31e0583917c55a5d Maintainer: seros Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
<refentry xml:id="function.mt-getrandmax" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>mt_getrandmax</refname>
|
|
<refpurpose>Mostrar el mayor valor aleatorio posible</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>mt_getrandmax</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<simpara>
|
|
Devuelve el valor máximo que puede ser devuelto por una llamada a
|
|
<function>mt_rand</function>.
|
|
</simpara>
|
|
</refsect1>
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Devuelve el valor aleatorio máximo devuelto por una llamada a
|
|
<function>mt_rand</function> sin argumentos, el cual es el valor máximo
|
|
que se puede emplear para su parámetro <parameter>max</parameter> sin que sea
|
|
ampliado el resultado (y por lo tanto menos aleatorio).
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example><title>Calcular un número de coma flotante aleatorio</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
function randomFloat($min = 0, $max = 1) {
|
|
return $min + mt_rand() / mt_getrandmax() * ($max - $min);
|
|
}
|
|
|
|
var_dump(randomFloat());
|
|
var_dump(randomFloat(2, 20));
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
float(0.91601131712832)
|
|
float(16.511210331931)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>mt_rand</function></member>
|
|
<member><function>mt_srand</function></member>
|
|
<member><function>getrandmax</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
|
|
-->
|