我是cURL
的新用户并且正在引用此示例:http://www.php.net/manual/en/book.curl.php#99979
我想写下面的curl请求:
curl "http://localhost:8080/solr/update/extract?literal.id=doc1&commit=true" -F "myfile=@test.pdf"
使用curl预定义常量。 (http://www.php.net/manual/en/curl.constants.php)
我开始写作:
$tuCurl = curl_init();
curl_setopt($tuCurl, CURLOPT_URL, "http://localhost:8080/solr/update/extract?literal.id=doc1&commit=true");
但是,在那之后,我无法弄清楚如何写-F "myfile=@test.pdf"
部分。