PHP | Función startAttribute() de XMLWriter

La función XMLWriter::startAttribute() es una función incorporada en PHP que se usa para iniciar el atributo. Este atributo se puede cerrar más tarde con la función XMLWriter::endAttribute().

Sintaxis:

bool XMLWriter::startAttribute( string $name )

Parámetros: esta función acepta un único parámetro $nombre que contiene el nombre del atributo.

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::startAttribute() 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');
  
// Start the attribute
$writer->startAttribute('attrib');
  
// Add value to the attribute
$writer->text('value');
  
// End the attribute
$writer->endAttribute();
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>

Producción:

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

Ejemplo 2: En este ejemplo agregaremos estilo al elemento

<?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:green');
  
// 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-attribute.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 *