1
0
mirror of https://github.com/php/doc-it.git synced 2026-03-24 07:32:12 +01:00
Files
Richard Quadling 518606a877 HTML Entities => UTF-8
git-svn-id: https://svn.php.net/repository/phpdoc/it/trunk@314704 c90b9560-bf6c-de11-be94-00142212c4b1
2011-08-10 08:35:12 +00:00

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.max" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>max</refname>
<refpurpose>Trova il valore massimo</refpurpose>
</refnamediv>
<refsect1>
<title>Descrizione</title>
<methodsynopsis>
<type>mixed</type><methodname>max</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>max</methodname>
<methodparam><type>array</type><parameter>numbers</parameter></methodparam>
<methodparam choice="opt"><type>array</type><parameter>...</parameter></methodparam>
</methodsynopsis>
<para>
<function>max</function> restituisce il numericamente più grande dei
valori dati come parametro.
</para>
<para>
Se il primo ed unico parametro è un array, <function>max</function>
restituisce il massimo dei valori di tale array. Se il primo parametro
è un integer, string o double, si ha bisogno almeno di due parametri
e <function>max</function> restituisce il maggiore di tali valori.
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ù alto valore
numerico. Se vi sono più argomenti considerati come
<literal>0</literal>, la funzione <function>max</function> restituirà il primo
(il valore più a sinistra).
</para>
</note>
<para>
<example>
<title>Esempio di <function>max</function></title>
<programlisting role="php">
<![CDATA[
<?php
echo max(1, 3, 5, 6, 7); // 7
echo max(array(2, 4, 5)); // 5
echo max(0, 'hello'); // 0
echo max('hello', 0); // hello
echo max(-1, 'hello'); // hello
// Con diversi array, max confronta da sinistra a destra
// quindi nell'esempio: 2 == 2, e 4 < 5
$val = max(array(2, 4, 8), array(2, 5, 7)); // array(2, 5, 7)
// Nel caso siano forniti array e parametri non array, la funzione restituirà
// sempre l'array, considerando questo il più grande
$val = max('string', array(2, 5, 7), 42); // array(2, 5, 7)
?>
]]>
</programlisting>
</example>
</para>
<para>
Vedere anche <function>min</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
-->