echo $variable; // nullfunction saludo() { global $variable; $variable = 'Hola Mundo!';}saludo();echo $variable; // Hola Mundo