16 lines
504 B
PHP
16 lines
504 B
PHP
<?php
|
|
/*ini_set('display_errors', 1);
|
|
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);*/
|
|
|
|
|
|
$content = file_get_contents('php://input');
|
|
|
|
$arPath = explode('/', __FILE__);
|
|
|
|
$agency_id = $arPath[count($arPath)-2];
|
|
///$arPath = explode('/', __FILE__);
|
|
file_put_contents($_SERVER['DOCUMENT_ROOT']."/webhooks/cian/".$agency_id."/log_cian.txt", $content."\n", FILE_APPEND);
|
|
//$data = json_decode($content, true);
|
|
|
|
require_once($_SERVER['DOCUMENT_ROOT']."/webhooks/cian.php");
|
|
//var_dump($data);
|