3
পিএইচপি সিআরএল বনাম ফাইল_জেট_কন্টেন্টস
একটি REST এপিআই অ্যাক্সেস করার সময় এই দুটি টুকরো কোড কীভাবে আলাদা হয়? $result = file_get_contents('http://api.bitly.com/v3/shorten?login=user&apiKey=key&longUrl=url'); এবং $ch = curl_init('http://api.bitly.com/v3/shorten?login=user&apiKey=key&longUrl=url'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); তারা উভয়ই একই ফলাফল উত্পাদন করে বিচার করে print_r(json_decode($result))
111
php
curl
file-get-contents