mirror of
https://github.com/php/doc-it.git
synced 2026-03-24 07:32:12 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/it/trunk@327390 c90b9560-bf6c-de11-be94-00142212c4b1
93 lines
3.1 KiB
XML
93 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- EN-Revision: n/a Maintainer: cortesi Status: ready -->
|
|
<refentry xml:id="function.min" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>min</refname>
|
|
<refpurpose>Trova il valore minimo</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Descrizione</title>
|
|
<methodsynopsis>
|
|
<type>mixed</type><methodname>min</methodname>
|
|
<methodparam><type>number</type><parameter>arg1</parameter></methodparam>
|
|
<methodparam><type>number</type><parameter>arg2</parameter></methodparam>
|
|
<methodparam choice="opt"><type>number</type><parameter>...</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<methodsynopsis>
|
|
<type>mixed</type><methodname>min</methodname>
|
|
<methodparam><type>array</type><parameter>numbers</parameter></methodparam>
|
|
<methodparam choice="opt"><type>array</type><parameter>...</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>min</function> restituisce il numericamente più
|
|
piccolo dei valori dati come parametro.
|
|
</para>
|
|
<para>
|
|
Se il primo ed unico pareametro è un array, la funzione <function>min</function>
|
|
restituisce il valore più basso nell'array. Se il primo parametro è un intero, una stringa, o un float,
|
|
occorrono almeno due parametri e <function>min</function> restituisce il minore tra questi.
|
|
Si può confrontare un numero illimitato di valori.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
Le <type>stringhe</type> non numeriche saranno considerate dal PHP come
|
|
<literal>0</literal>, ma verrà restituita la stringa se questa è il più basso valore
|
|
numerico. Se vi sono più argomenti considerati come
|
|
<literal>0</literal>, la funzione <function>min</function> restituirà il primo
|
|
(il valore più a sinistra).
|
|
</para>
|
|
</note>
|
|
<para>
|
|
<example>
|
|
<title>Esempio di uso di <function>min</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
echo min(2, 3, 1, 6, 7); // 1
|
|
echo min(array(2, 4, 5)); // 2
|
|
|
|
echo min(0, 'hello'); // 0
|
|
echo min('hello', 0); // hello
|
|
echo min('hello', -1); // -1
|
|
|
|
// Con diversi array, min confronta da sinistra a destra
|
|
// quindi nell'esempio: 2 == 2, e 4 < 5
|
|
$val = min(array(2, 4, 8), array(2, 5, 1)); // array(2, 4, 8)
|
|
|
|
// In caso di parametri misti array e non array, l'array non sarà mai restituito
|
|
// perché considerato il più grande
|
|
$val = min('string', array(2, 5, 7), 42); // string
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
Vedere anche <function>max</function> e
|
|
<function>count</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:"~/.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
|
|
-->
|