Files
fast/vendor/workerman/phpsocket.io/src/Debug.php
xiadc c6a4e1f5f6 init
- 框架初始化
 - 安装插件
 - 修复PHP8.4报错
2025-04-19 17:21:20 +08:00

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";
}
}
}