Considere o código PHP abaixo:<!DOCTYPE html> <html...
Considere o código PHP abaixo:
<!DOCTYPE html>
<html>
<body>
<?php
function f1() {
static $res = “A”;
echo $res;
$res = $res . $res;
}
f1();
echo "<br>";
f1(); echo "<br>";
f1();
?>
</body>
</html>
Após a execução do código PHP, será apresentado no navegador do usuário: