$db = [
'id', // сгенирированный id
'full_address' // полный адрес
'floorall', // этажность
'build_year', //год постройки
];
$api = [
'guid', //так приходи их id но по сути он мне не нужен
'guid_address', //полный адрес
'floor_max', // этажность
'date', //год постройки
];
<internal_id>Это id</internal_id>
<locality>Полный адрес</locality>
<floorall>Этажность</floorall>
<build_date> Год постройки</build_date>
<?php
class KeysReplacer {
public $default = [
'id' => 'id',
'full_address' => 'adress',
'floorall' => 'floorall',
'build_year' => 'build_year',
];
public $services = [
'service_1' => [
'id' => 'internal_id',
'full_address' => 'locality',
'floorall' => 'floorall',
'build_year' => 'build_date'
],
'service_2' => [
'id' => 'ид',
'full_address' => 'полный_адрес',
'floorall' => 'этажность',
'build_year' => 'год_постройки'
],
];
public function __invoke($item, $from = null)
{
$result = [];
foreach($item as $key => $value){
$result[$from && isset($this->services[$from][$key])
? $this->services[$from][$key]
: $this->default[$key]] = $value;
}
return json_encode($result, JSON_UNESCAPED_UNICODE);
}
}
function getItem(){
return [
'id' => 1,
'full_address' => 'г. Москва',
'floorall' => 18,
'build_year' => 1990
];
}
$item = getItem();
$responseNormalizer = new KeysReplacer;
$response_0 = $responseNormalizer($item);
$response_1 = $responseNormalizer($item, 'service_1');
$response_2 = $responseNormalizer($item, 'service_2');
var_dump($response_0); // string(68) "{"id":1,"adress":"г. Москва","floorall":18,"build_year":1990}"
var_dump($response_1); // string(79) "{"internal_id":1,"locality":"г. Москва","floorall":18,"build_date":1990}"
var_dump($response_2); // string(112) "{"ид":1,"полный_адрес":"г. Москва","этажность":18,"год_постройки":1990}"