alecjw Posted August 7, 2006 Share Posted August 7, 2006 Could you use a function within a function eg:<?phpfunction a(){//Some code}function b(){a()//Some code}?>Or would you need to make function a() global first? Quote Link to comment https://forums.phpfreaks.com/topic/16811-function-withn-a-function/ Share on other sites More sharing options...
wildteen88 Posted August 7, 2006 Share Posted August 7, 2006 Yes you can call a function within a function. However if you have a function defined within a function you first have to call the function that has the embeded function. Then you can call the emebed function. Like so:[code=php:0]// define the function within a functionfunction foo() { function bar() { echo "foobar"; }}//call foo firstfoo();// now you can use bar functionbar();[/code] Quote Link to comment https://forums.phpfreaks.com/topic/16811-function-withn-a-function/#findComment-70758 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.