Joywork/cron/bn-fbn-agency-fetch-data.php

31 lines
953 B
PHP
Raw Normal View History

2026-05-22 20:21:54 +02:00
<?php
/*
Скрипт для выгрузки объектов в Яндекс Недвижимость
Описание формата http://help.yandex.ru/webmaster/realty/requirements.xml
*/
set_time_limit(0);
require_once($_SERVER['DOCUMENT_ROOT']."/config.php");
require_once($_SERVER['DOCUMENT_ROOT']."/engine/functions.php");
require_once($_SERVER['DOCUMENT_ROOT']."/engine/functions.php");
include $_SERVER['DOCUMENT_ROOT'] . '/import/FbnParser.php';
ini_set('display_errors', 1);
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Проверка создания фида Яндекс для ФБН</title>
</head>
<body>
<?php
BnFbnAgency::parse_data('https://mbd.rgr.ru/export/906d1dca-e77a-11ea-a047-b4b52f561288-47.xml',$mdb);
BnFbnAgency::parse_data('https://mbd.rgr.ru/export/906d1dca-e77a-11ea-a047-b4b52f561288-78.xml',$mdb);
?>
</body>
</html>