如何在PHP中启动GET/POST/PUT/DELETE请求并判断请求类型?
我从来不知道请求是如何发送的。PUT/DELETE
如何在PHP中做到这一点?
我知道如何使用 curl 发送 GET/POST 请求:
$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);
curl_setopt($ch, CURLOPT_COOKIEFILE,$cookieFile);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_POST, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 4);
但是如何做/请求?PUT
DELETE