This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql03d/funktion_max.php

24 lines
586 B
PHP

<?php
$zahlen = [14, 45, 26, 9, 21, 7];
echo "<h3>Die größte Zahl im Array ist "
.max($zahlen)
."</h3>";
//------------------------------------------------------------------------------------------//
echo "<h3>Der größte Wert aus 14, 45, 26, 9, 21, 7 ist "
.max(14, 45, 26, 9, 21, 7)
."! </h3>";
//------------------------------------------------------------------------------------------//
echo "<h3>Der größte Wert aus (22*23), (14*43), (15*24), (46*7), 2, (23*27) ist "
.max((22*23), (14*43), (15*24), (46*7), 2, (23*27))
."! </h3>";
?>