Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Last active December 16, 2015 06:59
Show Gist options
  • Save luckyshot/5395596 to your computer and use it in GitHub Desktop.
Save luckyshot/5395596 to your computer and use it in GitHub Desktop.
Simple Console system
<?php
public function c($msg, $echo = 0) {
if (!isset($_SESSION['console'])) { $_SESSION['console'] = "";}
if ($echo) {
$buffer = "<pre>".$_SESSION['console']."</pre>";
$_SESSION['console']="";
return $buffer;
}else{
$_SESSION['console'] = $_SESSION['console']."
".$msg;
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment