Passing an Argument to a Function by Value
|
<html> <head> <title>Passing an Argument to a Function by Value</title> </head> <body> <?php function addFive( $num ) { $num += 5; } $orignum = 20; addFive( $orignum ); print( $orignum ); ?> </body> </html>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
|