PHP ve cURL ile $ _POST iletmek için nasıl?

2 Cevap php

Ben PHP script POST isteği almak ve çok POST kullanarak başka bir komut dosyası için bu yazı çağrıyı iletmek istiyorum. Bunun nasıl? Bu eylem için gerekli eğer ben cURL kullanabilirsiniz.

2 Cevap

Belki de:

curl_setopt($ch, CURLOPT_POSTFIELDS, $_POST);

http://www.php.net/manual/en/function.curl-setopt.php

This can either be passed as a urlencoded string like 'para1=val1¶2=val2&...' or as an array with the field name as key and field data as value.

Bunu yapmak,

curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($_POST));