系统:ubuntu22.04;
php:8.2.1
mysql: 8.0.32
nginx:1.22.1
thingphp:v6.1.0
Implicit conversion from float 18.5 to int loses precision
260行:
$A = mt_rand(1, $this->imageH / 2); // 振幅
改:
$A = mt_rand(1, intval($this->imageH / 2)); // 振幅
269行:
$px2 = mt_rand($this->imageW / 2, $this->imageW * 0.8); // 曲线横坐标结束位置
改:
$px2 = mt_rand(intval($this->imageW / 2), intval($this->imageW * 0.8));
283行:
$A = mt_rand(1, $this->imageH / 2); // 振幅
改:
$A = mt_rand(1, intval($this->imageH / 2)); // 振幅
暂时可以使用了,不知道其他人有没有好的解决办法?请告知一下!谢谢!