Делаю следующее
$content=file_get_contents('php://input'); // ожидается JSON
$res=json_decode($content,true);
file_put_contents(__DIR__.'/array.txt',$current);
в файле array.txt вижу вот это
"{\"orderId\":\"ORDER-294\",\"paymentState\":\"CANCELED\",\"signature\":\"naK+\/aJT31EfQ=\",\"message\":\"\u043b \u043e\u043f\u043b\u0430\u0442\u0443\",\"storeId\":\"158CC63FB\"}"
Я хочу получить 294, но видимо что то делаю не так
$content=file_get_contents('php://input');
$res=json_decode(json_decode($content),true);
$orderId=explode('-',$res['orderId'])[1];