init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
14
vendor/workerman/phpsocket.io/src/Debug.php
vendored
Normal file
14
vendor/workerman/phpsocket.io/src/Debug.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace PHPSocketIO;
|
||||
|
||||
class Debug
|
||||
{
|
||||
public static function debug($var)
|
||||
{
|
||||
global $debug;
|
||||
if ($debug) {
|
||||
echo var_export($var, true) . "\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user