Maison > Questions et réponses > le corps du texte
P粉0304790542023-08-25 18:03:55
Vous avez besoin...
"Convertissez instantanément les commandes curl en code PHP"
P粉0222857682023-08-25 12:35:36
Point de départ :
<?php $pageurl = "http://hostname/@api/deki/pages/=TestPage/files/="; $filename = "test.png"; $theurl = $pageurl . $filename; $ch = curl_init($theurl); curl_setopt($ch, CURLOPT_COOKIE, ...); // -b curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // -X curl_setopt($ch, CURLOPT_BINARYTRANSFER, TRUE); // --data-binary curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: image/png']); // -H curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); // -0 ... ?>
Voir aussi : http://www.php.net/manual /en/function.curl-setopt.php