Mega Code Archive

 
Categories / Php / Functions
 

A Function with an Optional Argument

<html> <body> <?php     function headingWrap( $txt, $size=3 ) {       print "<h$size>$txt</h$size>";     }     headingWrap("Book title", 1); ?> </body> </html>