PHP - função xmlwriter_set_indent ()
Definição e Uso
XML é uma linguagem de marcação para compartilhar os dados na web, XML é tanto para leitura humana quanto para máquina. A extensão XMLWriter possui internamente a API libxml xmlWriter e é usada para escrever / criar o conteúdo de um documento XML. Os documentos XML gerados por isso não são armazenados em cache e são apenas encaminhados.
o xmlwriter_set_indent() A função aceita um objeto da classe XMLWriter e um valor booleano como parâmetros e define a indentação do documento XML de saída como on / off, com base no valor booleano passado.
Sintaxe
xmlwriter_set_indent($writer, $indentation);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | writer(Mandatory) Este é um objeto da classe XMLWriter que representa o documento XML que você deseja modificar / criar. |
2 | indentation(Mandatory) Este é um valor booleano que especifica se deve haver indentação no documento de saída ou não. |
Valores Retornados
Esta função retorna um valor booleano que é TRUE em caso de sucesso e FALSE em caso de falha.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso do xmlwriter_set_indent() função -
<?php
//Creating an XMLWriter
$writer = new XMLWriter();
//Opening a writer
$uri = "result.xml";
$writer = xmlwriter_open_uri($uri);
//Starting the document
xmlwriter_start_document($writer);
//Starting an element
xmlwriter_start_element($writer, 'Tutorial');
//Setting indentation
xmlwriter_set_indent($writer,TRUE);
xmlwriter_set_indent_string($writer, " ");
//Creating XML elements
xmlwriter_write_element($writer, 'name', 'JavaFX');
xmlwriter_write_element($writer, 'author', 'Krishna');
xmlwriter_write_element($writer, 'pages', '535');
//Ending the element
xmlwriter_end_element($writer);
//Ending the document
xmlwriter_end_document($writer);
print("XML Document Created");
?>
Isso irá gerar o seguinte documento XML -
<?xml version="1.0"?>
<Tutorial>
<Name>JavaFX</Name>
<Author>Krishna</Author>
<Pages>535</Pages>
</Tutorial>
Exemplo
A seguir está o exemplo desta função no estilo orientado a objetos -
<?php
//Creating an XMLWriter
$writer = new XMLWriter();
$uri = "result.xml";
//Opening a writer
$writer->openUri($uri);
//Starting the document
$writer->startDocument();
//Starting an element
$writer->startElement('Tutorial');
//Setting indentation
$writer->setIndent(TRUE);
$writer->setIndentString(" ");
//Creating XML elements
$writer->writeElement('Name', 'JavaFX');
$writer->writeElement('Author', 'Krishna');
$writer->writeElement('Pages', '535');
//Ending the element
$writer->endElement();
//Ending the document
$writer->endDocument();
?>
Isso irá gerar o seguinte documento XML -
<?xml version="1.0"?>
<Tutorial>
<Name>JavaFX</Name>
<Author>Krishna</Author>
<Pages>535</Pages>
</Tutorial>