<?php header('Content-Type: application/json'); $data = file_get_contents('php://input'); $objetTache = json_decode($data, true); $file = 'zzz.json'; if (file_exists($file)) { // Si le fichier existe, effacer son contenu file_put_contents($file, ''); } // Écrire les données dans le fichier file_put_contents($file, json_encode($objetTache, JSON_PRETTY_PRINT)); echo json_encode(['status' => 'success']); ?>