Files

19 lines
185 B
PHP
Raw Permalink Normal View History

2022-01-09 03:50:38 +08:00
<?php
namespace Kiri\Core;
class Network
{
/**
* @return string
*/
public static function local(): string
{
return current(swoole_get_local_ip());
}
}