hy-farm/muchang/homesocket/comm/SocketCommUtil.php
2026-05-29 19:54:56 +08:00

18 lines
312 B
PHP

<?php
/**
* Created by PhpStorm.
* User: zn
* Date: 2017/6/22
* Time: 11:39
*/
namespace comm;
class SocketCommUtil
{
public static function log($type, $fd, $message=null)
{
echo sprintf('%s fd:%s 时间:%s 内容:%s', $type, $fd, date('Y-m-d H:i:s', time()), $message) . PHP_EOL;
}
}