mirror of
https://gitee.com/liuxioabin/fengketrade.git
synced 2026-04-18 13:13:17 +08:00
15 lines
201 B
PHP
15 lines
201 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace PHPSocketIO;
|
||
|
|
|
||
|
|
class Debug
|
||
|
|
{
|
||
|
|
public static function debug($var)
|
||
|
|
{
|
||
|
|
global $debug;
|
||
|
|
if ($debug) {
|
||
|
|
echo var_export($var, true) . "\n";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|