mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-24 14:39:24 +00:00
12 lines
277 B
PHP
12 lines
277 B
PHP
<?php
|
|
require '../src/Curl/Curl.php';
|
|
|
|
use \Curl\Curl;
|
|
|
|
$curl = new Curl();
|
|
$curl->get('https://coinbase.com/api/v1/prices/spot_rate');
|
|
|
|
echo
|
|
'The current price of bitcoin at Coinbase is ' .
|
|
'$' . $curl->response->amount . ' ' . $curl->response->currency . '.' . "\n";
|