Skip to content

Instantly share code, notes, and snippets.

@fgilio
Created February 7, 2016 20:24
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 fgilio/885b4a170a1050e1cffb to your computer and use it in GitHub Desktop.
Save fgilio/885b4a170a1050e1cffb to your computer and use it in GitHub Desktop.
PHP - Save Output Buffer to $string
<?php
ob_start();
// Run code with here, must include 'echo' or alike
$output = ob_get_contents();
ob_end_clean();
// Process Output Buffer, save in DB, etc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment