26 Ocak 2010, Salı
PHP curl, HTTP örnek kod YAZI mı?
Herkes nasıl yapılacağını bana göster bir php bir HTTP POST ile curl olabilir?
Bu şekilde veri göndermek istiyorum:
username=user1, password=passuser1, gender=1
www.domain.com
result=OK
gibi bir yanıt dönmek için curl bekliyorum. Herhangi bir örnek var mı?
CEVAP
26 Ocak 2010, Salı
Php/curl örnekleri burada bulabilirsiniz: http://curl.haxx.se/libcurl/php/examples/ özellikle http://curl.haxx.se/libcurl/php/examples/simplepost.html
<?php
//
// A very simple PHP example that sends a HTTP POST to a remote site
//
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"http://www.mysite.com/tester.phtml");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"postvar1=value1&postvar2=value2&postvar3=value3");
// in real life you should use something like:
// curl_setopt($ch, CURLOPT_POSTFIELDS,
// http_build_query(array('postvar1' => 'value1')));
// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec ($ch);
curl_close ($ch);
// further processing ....
if ($server_output == "OK") { ... } else { ... }
?>
Bunu Paylaş:
Ulaştırma Güvenlik düz yazı bir HTTP E...
Nasıl bir başlık curl çağrısı ile bir ...
Sürekli/PHP ile Curl Kütüphanesi HTTP ...
HTTP POST cevap başlık curl kullanarak...
Örnek http aralığı oturum isteği...