Get your own website Result Size: 625 x 565
x
 
<?php declare(strict_types=1); // strict requirement ?>
<!DOCTYPE html>
<html>
<body>
<?php
function setHeight(int $minheight = 50) {
  echo "The height is : $minheight <br>";
}
setHeight(350);
setHeight();
setHeight(135);
setHeight(80);
?>
</body>
<!-- Mirrored from www.w3schools.com/php/phptryit.asp?filename=tryphp_function4 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 14:29:47 GMT -->
</html>
The height is : 350
The height is : 50
The height is : 135
The height is : 80