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))
111
php
curl
file-get-contents