Connaissances Informatiques >> programmation >> PHP /MySQL Programmation >> Content
  Derniers articles
  • Comment faire pour installer PHP dan…
  • Comment faire pour créer un répert…
  • Comment se débranchent variables de…
  • Comment décoder le code PHP 
  • Comment créer un site web d'abonnem…
  • Comment faire pour convertir la colo…
  • Comment créer une connexion simple …
  • CentOS pour l'installation de PHP av…
  • Comment envoyer un fax avec PHP 
  • Comment créer Dir en PHP 
  •   PHP /MySQL Programmation
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    PHP /MySQL Programmation

    Comment récupérer des données XML en utilisant php ?

    ```php

    // Charge le document XML

    $xmlDoc =nouveau DOMDocument();

    $xmlDoc->load('data.xml');

    // Récupère l'élément racine

    $rootElement =$xmlDoc->documentElement ;

    // Récupère les données du document XML

    $données =tableau();

    foreach ($rootElement->childNodes as $childNode) {

    si ($childNode->nodeType ==XML_ELEMENT_NODE) ​​{

    $data[$childNode->nodeName] =$childNode->textContent;

    }

    }

    // Imprimer les données

    print_r($données);

    ?>

    ```

     
    Article précédent:
    Article suivant:
    Articles recommandés
  • MySQL: chaîne de requête pour Int 
  • Comment requête MySQL par Content Durée 
  • Comment convertir une chaîne en nombre de MySQL 
  • Comment inverser une requête MySQL en PHP 
  • Comment créer un rôle dans MySQL pour un groupe de personnes ? 
  • Sendmail Vs . PHP Courriel 
  • Quels sont le trait d'union et Supérieur syntaxes PHP connecter 
  • MySQL Auto- incrément est Out of Sync 
  • Comment afficher un document Word avec PHP 
  • Comment modifier un fichier texte en utilisant PHP 
  • Connaissances Informatiques © http://www.ordinateur.cc