PHP | Función XMLWriter startDocument()

La función XMLWriter::startDocument() es una función incorporada en PHP que se utiliza para iniciar el documento. Luego, este documento debe finalizarse con la función XMLWriter::endDocument .

Sintaxis:

bool XMLWriter::startDocument( string $version, 
string $encoding, string $standalone )

Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:

  • $versión (Opcional): Especifica el número de versión del documento como parte de la declaración XML.
  • $codificación (Opcional): Especifica la codificación del documento como parte de la declaración XML.
  • $independiente (Opcional): Especifica si el documento es independiente o no.

Valor de retorno: esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.

Los siguientes ejemplos ilustran la función XMLWriter::startDocument() en PHP:

Ejemplo 1:

<?php
  
// Create a new XMLWriter instance
$writer = new XMLWriter();
  
// Create the output stream as PHP
$writer->openURI('php://output');
  
// Start the document
$writer->startDocument('1.0', 'UTF-8');
  
// Start a element
$writer->startElement('div');
  
// Add value to the element
$writer->text('GeeksforGeeks');
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>

Producción:

<?xml version="1.0" encoding="UTF-8"?>
<div>GeeksforGeeks</div>

Ejemplo 2:

<?php
  
// Create a new XMLWriter instance
$writer = new XMLWriter();
    
// Create the output stream as PHP
$writer->openURI('php://output');
    
// Start the document
$writer->startDocument('1.0', 'UTF-8');
    
// Start a h1 element
$writer->startElement('h1');
    
// Start the style attribute
$writer->startAttribute('style');
    
// Add value to the attribute
$writer->text('color:orange;font-size:80px;');
    
// End the attribute
$writer->endAttribute();
    
// Add value to the element
$writer->text('GeeksforGeeks');
    
// End the element
$writer->endElement();
    
// End the document
$writer->endDocument();
?>

Producción:

Referencia: https://www.php.net/manual/en/function.xmlwriter-start-document.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *