2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2005-11-28 16:35:53 +00:00
|
|
|
<!-- $Revision: 1.7 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/math.xml, last change in rev 1.2 -->
|
|
|
|
<refentry id="function.max">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>max</refname>
|
|
|
|
<refpurpose>Find highest value</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
2003-01-19 04:18:59 +00:00
|
|
|
<methodsynopsis>
|
2003-07-19 01:03:46 +00:00
|
|
|
<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>
|
2003-01-19 04:18:59 +00:00
|
|
|
</methodsynopsis>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
|
|
|
<function>max</function> returns the numerically highest of the
|
|
|
|
parameter values.
|
|
|
|
</para>
|
|
|
|
<para>
|
2003-07-19 01:03:46 +00:00
|
|
|
If the first and only parameter is an array, <function>max</function>
|
2002-04-15 00:12:54 +00:00
|
|
|
returns the highest value in that array. If the first parameter
|
|
|
|
is an integer, string or float, you need at least two parameters
|
|
|
|
and <function>max</function> returns the biggest of these values.
|
|
|
|
You can compare an unlimited number of values.
|
|
|
|
</para>
|
2003-07-19 01:03:46 +00:00
|
|
|
<note>
|
|
|
|
<para>
|
|
|
|
PHP will evaluate a non-numeric <type>string</type> as
|
|
|
|
<literal>0</literal>, but still return the string if it's seen as the
|
|
|
|
numerically highest value. If multiple arguments evaluate to
|
2005-11-28 16:35:53 +00:00
|
|
|
<literal>0</literal>, <function>max</function> will return a numeric
|
|
|
|
<literal>0</literal> if given, else the alphabetical highest string
|
|
|
|
value will be returned.
|
2003-07-19 01:03:46 +00:00
|
|
|
</para>
|
|
|
|
</note>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
2003-07-19 01:03:46 +00:00
|
|
|
<example>
|
|
|
|
<title>Example uses of <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
|
|
|
|
|
|
|
|
// With multiple arrays, max compares from left to right
|
|
|
|
// so in our example: 2 == 2, but 4 < 5
|
|
|
|
$val = max(array(2, 4, 8), array(2, 5, 7)); // array(2, 5, 7)
|
|
|
|
|
|
|
|
// If both an array and non-array are given, the array
|
|
|
|
// is always returned as it's seen as the largest
|
|
|
|
$val = max('string', array(2, 5, 7), 42); // array(2, 5, 7)
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
2003-01-19 04:18:59 +00:00
|
|
|
<para>
|
2003-07-19 01:03:46 +00:00
|
|
|
See also <function>min</function> and
|
|
|
|
<function>count</function>.
|
2003-01-19 04:18:59 +00:00
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
</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
|
|
|
|
-->
|