0

I can't seem to find any reference to the LH command this cURL command uses -- so I'm not entirely certain how to translate it to php

$ curl -LH "Accept: text/bibliography; style=mla; locale=fr-FR" http://dx.doi.org/10.1038/nrd842

4

1 回答 1

0

curl -LH只是两个标志LH.

见:http ://curl.haxx.se/docs/manpage.html

-L= 位置

-H= 标题

在您的代码中,您应该交换您的标志-HL或交换您的参数值。

于 2013-06-25T20:15:43.063 回答