乐趣区

关于php:Swoole-v471-版本发布Bug-修复版本

v4.7.1 版本次要是一个 Bug 修复版本,没有向下不兼容改变。

  • 兼容了 PHP 8.1 版本
  • SWOOLE_HOOK_CURL 反对了 CURLOPT_RESOLVE 选项

反对了形如 HOST:PORT:ADDRESS[+]HOST:PORT:ADDRESS[-]HOST:PORT:ADDRESS 和多地址的格局

use Swoole\Coroutine;
use Swoole\Runtime;

Runtime::enableCoroutine(SWOOLE_HOOK_CURL);
Coroutine\run(function () {
    $host = 'httpbin.org';
    $url = 'https://httpbin.org/get';
    $ip = Coroutine::gethostbyname($host);
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_RESOLVE, ["{$host}:443:127.0.0.1", "{$host}:443:{$ip}"]);

    $data = curl_exec($ch);
    $httpPrimaryIp = curl_getinfo($ch, CURLINFO_PRIMARY_IP);
    $body = json_decode($data, true);
    assert($body['headers']['Host'] === 'httpbin.org');
    assert($body['url'] === $url);
    assert($ip === $httpPrimaryIp);
});

更新日志

上面是残缺的更新日志:

加强

  • System::dnsLookup 反对查问 /etc/hosts (#4341) (#4349) (@zmyWL) (@NathanFreeman)
  • 减少对 mips64 的 boost context 反对 (#4358) (@dixyes)
  • SWOOLE_HOOK_CURL 反对 CURLOPT_RESOLVE 选项 (swoole/library#107) (@sy-records)
  • SWOOLE_HOOK_CURL 反对 CURLOPT_NOPROGRESS 选项 (swoole/library#117) (@sy-records)
  • 减少对 riscv64 的 boost context 反对 (#4375) (@dixyes)

修复

  • 修复 PHP-8.1 在 on shutdown 时产生的内存谬误 (#4325) (@twose)
  • 修复 8.1.0beta1 的不可序列化类 (#4335) (@remicollet)
  • 修复多个协程递归创立目录失败的问题 (#4337) (@NathanFreeman)
  • 修复 native curl 在外网发送大文件偶发超时的问题,以及在 CURL WRITEFUNCTION 中应用协程文件 API 呈现 crash 的问题 (#4360) (@matyhtf)
  • 修复 PDOStatement::bindParam() 冀望参数 1 为字符串的问题 (swoole/library#116) (@sy-records)

退出移动版