Привожу код парсера и функции для взаимодействия с api
<?php
//include_once('libphp/total_function.php');
include_once('libphp/LIB/simple_html_dom.php');
include_once 'api.php';
$type=2;
delete_records($type);
$name='';
$city='';
$region='';
$adress='';
$phone='';
$work_time='';
ini_set('user_agent', 'My-Application/2.5');
$html = new simple_html_dom();
$cont = get_data("http://допустим тут ссылка на api службы доставки");
$dom = $html->load($cont);
if (!empty($dom))
foreach($dom->find('div.city-block') as $article) {
$city = trim($article->find('div.city-title', 0)->plaintext);
$city = strtolower($city);
$city = ucfirst($city);
foreach($article->find('div.city-info') as $articles){
$name = "Отделение №".trim($articles->find('div.attention-circle-violet', 0)->plaintext);
$adress = trim($articles->find('div.city-info-addr', 0)->plaintext);
if(strlen(trim($adress)))
append_department($type,$name,($city),$region,$adress,$phone,$work_time);
}
}
else {
die("Error");
}
die("OK");
// Дальше следует функция get_data и тд
}
?>
function helloAPI($apiMethodParams){
header('Content-type: text/html');
echo file_get_contents("http://localhost/delivery/delivery.php");
}