ext-async icon indicating copy to clipboard operation
ext-async copied to clipboard

版本4.4.16,无法使用异步http client

Open timeshi opened this issue 4 years ago • 1 comments

$cli = new swoole_http_client('127.0.0.1', 80);
$result = $cli->post('/test.php', ["a" => "a"], function ($cli) { //回调函数没有响应
    echo "Length: " . strlen($cli->body) . "\n";
    var_dump($cli);
    echo $cli->body;
});

timeshi avatar Mar 06 '20 11:03 timeshi

应该是post就没有执行,http服务器没有收到任何请求

timeshi avatar Mar 06 '20 11:03 timeshi