Function with an Optional Argument : Parameters : Functions PHP Source Code


PHP Source Code » Functions » Parameters »

 

Function with an Optional Argument



<html>
<head>
<title>Function with an Optional Argument</title>
</head>
<body>
<?php
function fontWrap$txt, $size=){
   print "<font size="$size">$txt</font>";
}

fontWrap("call 1<br>",5);
fontWrap("call 2<br>");
fontWrap("call 3<br>");
fontWrap("call 4<br>");
?>
</body>
</html>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» Parameters