A sample include file called add.phpfunction add( $x, $y ){ return $x + $y;}?>include_once('add.php');include_once('add.php');echo add(2, 2);?>