59 votes

Comment écrire CDATA en utilisant SimpleXmlElement ?

J'ai ce code pour créer et mettre à jour le fichier xml :

<?php
$xmlFile    = 'config.xml';
$xml        = new SimpleXmlElement('<site/>');
$xml->title = 'Site Title';
$xml->title->addAttribute('lang', 'en');
$xml->saveXML($xmlFile);
?>

Cela génère le fichier xml suivant :

<?xml version="1.0"?>
<site>
  <title lang="en">Site Title</title>
</site>

La question est : existe-t-il un moyen d'ajouter des CDATA avec cette méthode/technique pour créer le code xml ci-dessous ?

<?xml version="1.0"?>
<site>
  <title lang="en"><![CDATA[Site Title]]></title>
</site>

2 votes

Il ne semble pas que SimpleXML supporte la création de nœuds CDATA. Essayez DOM au lieu de

2 votes

En quoi cela vous concerne-t-il ? <title lang="en">Site Title</title> y <title lang="en"><![CDATA[Site Title]]></title> sont identiques, sauf que l'un d'eux utilise plus d'octets et est plus difficile à lire pour un humain.

0 votes

@Quentin Bon point. C'est juste une exigence du client.

95voto

quantme Points 1417

Je l'ai eu ! J'ai adapté le code de cette excellente solution ( version archivée ) :

    <?php

    // http://coffeerings.posterous.com/php-simplexml-and-cdata
    class SimpleXMLExtended extends SimpleXMLElement {

      public function addCData( $cdata_text ) {
        $node = dom_import_simplexml( $this ); 
        $no   = $node->ownerDocument;

        $node->appendChild( $no->createCDATASection( $cdata_text ) ); 
      }

    }

    $xmlFile    = 'config.xml';

    // instead of $xml = new SimpleXMLElement( '<site/>' );
    $xml        = new SimpleXMLExtended( '<site/>' );

    $xml->title = NULL; // VERY IMPORTANT! We need a node where to append

    $xml->title->addCData( 'Site Title' );
    $xml->title->addAttribute( 'lang', 'en' );

    $xml->saveXML( $xmlFile );

    ?>

Fichier XML généré :

    <?xml version="1.0"?>
    <site>
      <title lang="en"><![CDATA[Site Title]]></title>
    </site>

Merci. Petah

4 votes

public function addChildcdata($element_name, $cdata) { $this->$element_name = NULL; $this->$element_name->addCData($cdata); } Cette fonction ajoutée à la classe d'extension vous permet d'ajouter directement des données CD.

0 votes

Je peux juste ajouter mon 2c que quand vous chargez le fichier simplexml_load_file/string() vous pouvez simplement le fournir avec une option "LIBXML_NOCDATA" ? php.net/manual/fr/libxml.constants.php

30voto

Ronen Yacobi Points 259

Voici ma version de cette classe qui possède une méthode rapide addChildWithCDATA, basée sur votre réponse :

    Class SimpleXMLElementExtended extends SimpleXMLElement {

  /**
   * Adds a child with $value inside CDATA
   * @param unknown $name
   * @param unknown $value
   */
  public function addChildWithCDATA($name, $value = NULL) {
    $new_child = $this->addChild($name);

    if ($new_child !== NULL) {
      $node = dom_import_simplexml($new_child);
      $no   = $node->ownerDocument;
      $node->appendChild($no->createCDATASection($value));
    }

    return $new_child;
  }
}

Il suffit de l'utiliser comme ça :

$node = new SimpleXMLElementExtended();
$node->addChildWithCDATA('title', 'Text that can contain any unsafe XML charachters like & and <>');

19voto

Patrick Coffey Points 1033

Vous pouvez également créer une fonction d'aide pour cela, si vous préférez ne pas étendre SimpleXMLElement :

 /**
  * Adds a CDATA property to an XML document.
  *
  * @param string $name
  *   Name of property that should contain CDATA.
  * @param string $value
  *   Value that should be inserted into a CDATA child.
  * @param object $parent
  *   Element that the CDATA child should be attached too.
  */
 $add_cdata = function($name, $value, &$parent) {
   $child = $parent->addChild($name);

   if ($child !== NULL) {
     $child_node = dom_import_simplexml($child);
     $child_owner = $child_node->ownerDocument;
     $child_node->appendChild($child_owner->createCDATASection($value));
   }

   return $child;
 };

2voto

Alexandr Yuditsky Points 106
    class MySimpleXMLElement extends SimpleXMLElement{

        public function addChildWithCData($name , $value) {
            $new = parent::addChild($name);
            $base = dom_import_simplexml($new);
            $docOwner = $base->ownerDocument;
            $base->appendChild($docOwner->createCDATASection($value));
        }

    }

        $simpleXmlElemntObj = new MySimpleXMLElement('<site/>');

        /* USAGE */

        /* Standard */
        $simpleXmlElemntObj->addChild('Postcode','1111');

       /* With CDATA */
       $simpleXmlElemntObj->addChildWithCData('State','Processing');

    /* RESULT */
    /*
    <?xml version="1.0"?>
    <site>
        <Postcode>1111</Postcode>
        <State><![CDATA[Processing]]></State>
    </site>
   */

0voto

Voici ma solution combinée avec l'ajout d'un enfant avec CDATA ou l'ajout de CDATA au nœud.

class SimpleXMLElementExtended extends SimpleXMLElement
{
    /**
    * Add value as CData to a given XML node
    *
    * @param SimpleXMLElement $node SimpleXMLElement object representing the child XML node
    * @param string $value A text to add as CData
    * @return void
    */
    private function addCDataToNode(SimpleXMLElement $node, $value = '')
    {
        if ($domElement = dom_import_simplexml($node))
        {
            $domOwner = $domElement->ownerDocument;
            $domElement->appendChild($domOwner->createCDATASection("{$value}"));
        }
    }

    /**
    * Add child node with value as CData
    *
    * @param string $name The child XML node name to add
    * @param string $value A text to add as CData
    * @return SimpleXMLElement
    */
    public function addChildWithCData($name = '', $value = '')
    {
        $newChild = parent::addChild($name);
        if ($value) $this->addCDataToNode($newChild, "{$value}");
        return $newChild;
    }

    /**
    * Add value as CData to the current XML node 
    *
    * @param string $value A text to add as CData
    * @return void
    */
    public function addCData($value = '')
    {
        $this->addCDataToNode($this, "{$value}");
    }
}

// Usage example:

$xml_doc = '<?xml version="1.0" encoding="utf-8"?>
<offers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1">
</offers>';

$xml = new SimpleXMLElementExtended($xml_doc);

$offer = $xml->addChild('o');
$offer->addAttribute('id', $product->product_id);
$offer->addAttribute('url', 'some url');

$cat = $offer->addChildWithCData('cat', 'Category description as CDATA');

// or

$cat = $offer->addChild('cat');
$cat->addCData('Category description as CDATA');

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X