Quiz 3
Write a function that puts a value in a variable when it is finished
<?php
function
gimmepi
(&
$var
) {
$result
=
M_PI
;
$var
=
$result
;
}
gimmepi
(
$foo
);
echo
$foo
;
Output
3.1415926535898