function geocode($coords) {
$myCurl = curl_init();
curl_setopt_array($myCurl, array(
CURLOPT_URL => 'https://geocode-maps.yandex.ru/1.x/?geocode='.$coords,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => false,
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer 7EG9MK2rWO-puhTKXSBFk_P8LyW1L-K_',
'Content-Type: application/json'
)
));
$response = curl_exec($myCurl);
curl_close($myCurl);
return simplexml_load_string($response);
};
$xml = geocode('27.525773,53.89079');
$tb
в базу по ключу $url
, ну или физически положите её в файл file_put_contents('/path/to/file.txt', $tb);
только тут тогда всё равно какой-то ключ ножен, хотя можно сделать так file_put_contents('/path/to/'.md5($url).'.txt', $tb);