Debug.php 182 B

123456789101112
  1. <?php
  2. namespace PHPSocketIO;
  3. class Debug
  4. {
  5. public static function debug($var)
  6. {
  7. global $debug;
  8. if($debug)
  9. echo var_export($var, true)."\n";
  10. }
  11. }