mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-27 04:24:45 +01:00
9 lines
158 B
PHP
9 lines
158 B
PHP
|
<?php
|
||
|
uv_getaddrinfo(uv_default_loop(),function($s,$names){
|
||
|
var_dump($names);
|
||
|
},"yahoo.com", NULL ,array(
|
||
|
"ai_family" => UV::AF_UNSPEC
|
||
|
));
|
||
|
|
||
|
uv_run();
|