Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
function hello() { $a='b'; $b='cheese'; }hello(); echo $$a;I need the above to output 'cheese', how can I set $$a to be used outside the function?Thanks!
function hello() { $a='b'; $b='cheese'; }
hello(); echo $$a;
I need the above to output 'cheese', how can I set $$a to be used outside the function?
Thanks!