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? 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] Link to comment https://forums.phpfreaks.com/topic/16811-function-withn-a-function/#findComment-70758 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.