احاول ان اقوم بدمج مصفوفتين كما في الشفرة ولكن يتم القاء خطا 500 , المشكلة انني ﻻ استطيع ان اعرف رسالة الخطا لانني اقوم بتنفيذ الكود من برنامج postman
$file_path="./{$section_name}.json";
chmod($file_path,0777);
$json = file_get_contents($file_path);
$body = json_decode(file_get_contents('php://input'));
header('Content-Type: application/json; charset=utf-8');
$json = json_decode($json);
$json=json_encode(array_merge($json,$body));
file_put_contents($file_path,$json);