PHP cURL İle JSON Gönderme

PHP ile cURL işlemlerini bir başka yazımda bahsetmiştim şimdi bu yazıda cURL işlemi ile JSON datanın nasıl POST edeceğini anlatacağım .

PHP ile cURL üzerinden direk POST yada GET methodlarına veri gönderebilirsiniz ancak karşı sunucu sadece JSON data kabul ediyorsa bu durumda işlem yapısı biraz farklı olacaktır. Örnek ile açıklayacak olursak ;

$data = array("adi" => "burak", "website" >; "https://www.brkdgn.com"); 
jsonCurlGonder($data,'https://www.brkdgn.com/postislem.php');

function jsonCurlGonder($data,$site){
		$data_string = json_encode($data);                                                                                   
																																						
		$ch = curl_init($site);                                                                      
		curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
		curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);                                                                  
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
		curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
				'Content-Type: application/json',                                                                                
				'Content-Length: ' . strlen($data_string))                                                                       
		);                                                                                                                   
																																																												
		$result = curl_exec($ch);

		return $result;
}

jsonCurlGonder($data,$site); fonksiyonunu kullanarak direk JSON datasını istediğiniz siteye POST edebilirsiniz.