agarmur Posted June 1, 2022 Share Posted June 1, 2022 (edited) Bonjour, Bonsoir, J’ai pour habitude de chercher par moi-même mais j’ai du mal à trouver des documentations à ce sujet donc je suis un peu perdu Voici mon problème, j’ai besoin d’envoyer le nom, prix, description en xml dans un produit, mais le prix est vide, je me demande si j’ai la bonne méthode pour faire cela ? $file = file_get_contents('php://input'); $xml = simplexml_load_file($file); $dom = new DOMDocument; $product = new Product($xml->id); $product->name = $xml->name; $product->price = $xml->price; $product->description = $xml->description; $product->save(); $id = $dom->createElement('id', "$xml->id"); $name = $dom->createElement('name', "$xml->name"); $price = $dom->createElement('price', "$xml->price"); $description = $dom->createElement('description', "$xml->description"); $dom->appendChild($id); $dom->appendChild($name); $dom->appendChild($price); $dom->appendChild($description); $dom->formatOutput = true; $this->output .= $dom->saveXML($file); $this->output .= $product->id; Voici la réponse sur Postman : Merci ! Edited June 1, 2022 by agarmur (see edit history) Link to comment Share on other sites More sharing options...
agarmur Posted June 16, 2022 Author Share Posted June 16, 2022 Update ! Il fallait juste supprimer la ligne : $file = file_get_contents('php://input'); Et modifier la ligne juste en dessous : $xml = simplexml_load_file('php://input'); Voilà ! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now