mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
8d3f8ca12a
The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
37 lines
817 B
PHP
37 lines
817 B
PHP
--TEST--
|
|
XMLWriter: libxml2 XML Writer, membuffer, flush, text, attribute
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("xmlwriter")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$xw = new XMLWriter();
|
|
$xw->openMemory();
|
|
$xw->startDocument('1.0', 'UTF-8');
|
|
$xw->startElement("tag1");
|
|
|
|
$res = $xw->startAttribute('attr1');
|
|
$xw->text("attr1_value");
|
|
$xw->endAttribute();
|
|
|
|
$res = $xw->startAttribute('attr2');
|
|
$xw->text("attr2_value");
|
|
$xw->endAttribute();
|
|
|
|
$xw->text("Test text for tag1");
|
|
$res = $xw->startElement('tag2');
|
|
if ($res < 1) {
|
|
echo "StartElement context validation failed\n";
|
|
exit();
|
|
}
|
|
$xw->endDocument();
|
|
|
|
// Force to write and empty the buffer
|
|
echo $xw->flush(true);
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<tag1 attr1="attr1_value" attr2="attr2_value">Test text for tag1<tag2/></tag1>
|
|
===DONE===
|