Files
kiri-core/kiri-engine/Core/Network.php
T

19 lines
167 B
PHP
Raw Normal View History

2021-12-02 14:06:57 +08:00
<?php
namespace Kiri\Core;
class Network
{
/**
* @return string
*/
public static function local(): string
{
return current(swoole_get_local_ip());
}
}