最佳答案
当我使用这个代码时:
$ch = curl_init($url);
$statuses = curl_exec($ch);
curl_close($ch);
我得到了我想要的返回值,但是如果我只使用这个返回值-$statuses
就会回显到页面上。
我怎么才能阻止这一切?