0

how can I add that parameter ("-IsH) to curl using PHP?

4

1 回答 1

1

像这样取决于您要添加的标题:

-I 仅表示标题,没有正文

curl_setopt($ch,CURLOPT_NOBODY);

-H

curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X-Apple-Tz: 0',
'X-Apple-Store-Front: 143444,12'
));

-s 表示静音

于 2012-11-05T21:35:03.253 回答