打包二進(jìn)制文件時(shí)報(bào)錯(cuò)
Phar packing...
Files collect complete, begin add file to Phar.
Write requests to the Phar archive, save changes to disk.
Downloading PHP8.1 ...
In BuildBinCommand.php line 63:
stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages:
error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed
build:bin [<version>]
這里粘貼截圖
php環(huán)境缺少證書導(dǎo)致的
1、下載cert證書到本地 D:/nginx/cacert.pem,地址:https://curl.haxx.se/ca/cacert.pem
2、修改php.ini openssl.cafile= 改為 openssl.cafile=D:/nginx/cacert.pem
重試