Created
February 19, 2014 13:42
-
-
Save garoevans/9092239 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//"file_foo.php" | |
<?php | |
include "file_bar.php"; | |
function foo1() | |
{ | |
echo 'me'; | |
} | |
function foo2() | |
{ | |
bar(); | |
} | |
//"file_bar.php" | |
<?php | |
include "file_foo.php"; | |
function bar() | |
{ | |
foo1(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment