3
PHP cURL กับ file_get_contents
โค้ดสองส่วนนี้แตกต่างกันอย่างไรเมื่อเข้าถึง REST API $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))
112
php
curl
file-get-contents