我试图做以下事情
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"php://input" );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
$result=curl_exec ($ch);
echo curl_error($ch);
echo $result;
使用 curl 获取原始帖子数据,因为我的托管 com 禁用了除 curl 之外的所有套接字功能,因此我无法执行 file_get_contents("php://input");
我收到一个错误
libcurl1 中不支持或禁用协议 php
我该怎么办?