PHP Functions
What will happen in this function call?
function calc($price, $tax) {
$total = $price + $tax;
}
$pricetag = 15;
$taxtag = 3;
calc($pricetag, $taxtag);

Call By Reference
Type Hinting
Default Argument Value
Call By Value

ANSWER DOWNLOAD EXAMIANS APP

PHP Functions
What will be the output of the following PHP code?
$title = "O'malley wins the heavyweight championship!";
echo ucwords($title);

O’Malley Wins The Heavyweight Championship!
O’malley Wins The Heavyweight Championship!
O’Malley wins the heavyweight championship!
o’malley wins the heavyweight championship!

ANSWER DOWNLOAD EXAMIANS APP