Which of the following statements are true ?
It is possible to keep a local variable with the keyword static even after the destruction of the function which created it
static
$GLOBALS[variable] and global variable are equivalent
$GLOBALS[variable]
global variable
The global keyword allows to access a global variable in a function
global
The static keyword allows to access a local variable outside of its function