[PHP-DEV] Bug #4322: minimum-function ( min (..) ) From: bohumir.sup (bohumir.sup <email protected>)
Date: 05/04/00

Operating system: SunOS 2.7
PHP version: 3.0.12

Example:
=======
<?php
echo "1| " . min(11,20) . "<BR>\n";
$t1=11;
$t2=20;
echo "2| " . min($t1,$t2) . "<BR>\n";
?>

Output:
=======
1| 11
2| 11

In example you wrote min($t1,$2) ...
                     right is min($t1,$t2) ???

_______________________________________________________
Ing. Bohumír SUP Kontakt
NEWTON Mergers&Acquisitions Tel.: +420-19-7222504
Plzen, Purkynova 28 Mobil: +420-606-828188
CZECH REPUBLIC Fax: +420-19-7236529

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>