Questions marquées «file-get-contents»

111
PHP cURL vs file_get_contents

En quoi ces deux morceaux de code diffèrent-ils lors de l'accès à une API REST? $result = file_get_contents('http://api.bitly.com/v3/shorten?login=user&apiKey=key&longUrl=url'); et $ch = curl_init('http://api.bitly.com/v3/shorten?login=user&apiKey=key&longUrl=url'); curl_setopt($ch,...