9 lines
132 B
PHP
Executable File
9 lines
132 B
PHP
Executable File
<?php
|
|
use Swoole\Coroutine as co;
|
|
|
|
co::create(function() {
|
|
$ip = co::gethostbyname("www.baidu.com");
|
|
echo "IP: $ip\n";
|
|
});
|
|
|