简体   繁体   中英

Curl Cmd to Curl php Conversion

curl -X POST -d 'something'

php有什么curl函数可以设置上面curl命令行命令的'-d'?

You should check this .

Also, take a look at this

The function you are looking for, should be:

curl_setopt($ch, CURLOPT_POSTFIELDS, 'something');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM