Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 answers
573 users
function f_out() { function f_in() { echo "need to call f_out() first."; } } f_in(); /* run: Fatal error: Call to undefined function f_in() in C:\xampp\htdocs\webshopy.com\test.php on line 11 */
function f_out() { function f_in() { echo "need to call f_out() first."; } } f_out(); f_in(); /* run: need to call f_out() first. */
function f_out() { function f_in() { echo "need to call f_out() first."; } } f_out(); // will not call f_in() /* run: */