不熟悉 PHP,我在 windows 上运行此代码时遇到问题 curl_php 已启用,当我执行代码时没有错误,但在 ubuntu 上我有一个空白屏幕我得到了结果,我也禁用了防火墙但仍然没有
$username = "myusername";
$password = "mypasword";
$host = "https://myurl";
$process = curl_init($host);
curl_setopt($process, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
curl_setopt($process, CURLINFO_HEADER_OUT, false);
curl_setopt($process, CURLOPT_USERPWD, $username . ":" . $password);
curl_setopt($process, CURLOPT_TIMEOUT, 30);
curl_setopt($process, CURLOPT_CUSTOMREQUEST, 'GET');
echo curl_exec($process);