Skip to content

Instantly share code, notes, and snippets.

@davidsword
Created February 24, 2017 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsword/29aa612b73266c72b79e41bddbe01174 to your computer and use it in GitHub Desktop.
Save davidsword/29aa612b73266c72b79e41bddbe01174 to your computer and use it in GitHub Desktop.
<?
function get_includes_output($file) {
global $options;
ob_start();
include_once($file);
return ob_get_clean();
}
$files_output = get_includes_output('/file.php');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment