14 lines
329 B
PHP
14 lines
329 B
PHP
<?php
|
|
function getPolishInterestRates() {
|
|
$url = 'http://api.nbp.pl/api/stat/nbp/interest_rate?format=json';
|
|
$response = file_get_contents($url);
|
|
if ($response === false) {
|
|
return null;
|
|
}
|
|
$data = json_decode($response, true);
|
|
if ($data === null) {
|
|
return null;
|
|
}
|
|
return $data;
|
|
}
|
|
?>
|