Skip to content

Instantly share code, notes, and snippets.

@garoevans
Created February 19, 2014 13:42
Show Gist options
  • Save garoevans/9092239 to your computer and use it in GitHub Desktop.
Save garoevans/9092239 to your computer and use it in GitHub Desktop.
//"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