We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hello This is my code.
phper@phper:~$ boris [1] boris> $books = ['aaa', 'bbb']; // array( // 0 => 'aaa', // 1 => 'bbb' // ) [2] boris> function serveBooks() { [2] *> global $books; [2] *> var_dump($books); [2] *> } [3] boris> serveBooks(); NULL // NULL [4] boris>