|
XMLWriter FunctionsThis is the XMLWriter extension. It wraps the libxml xmlWriter API. This extension represents a writer that provides a non-cached, forward-only means of generating streams or files containing XML data. This extension can be used in an object oriented style or a procedural one. Every method documented describes the alternative procedural call.
There is one resource used by the procedural version of the XMLWriter extension: returned by xmlwriter_open_memory() or xmlwriter_open_uri(). Table of Contents
Code Examples / Notes » ref.xmlwritercarlos averett
Using XMLWriter to create a WAP page: <?php $memory = xmlwriter_open_memory(); xmlwriter_start_document($memory,'1.0','UTF-8'); xmlwriter_start_dtd($memory,'html','-//WAPFORUM//DTD XHTML Mobile 1.0//EN', 'http://www.wapforum.org/DTD/xhtml-mobile10.dtd'); xmlwriter_end_dtd($memory); xmlwriter_start_element ($memory,'html'); // <html> xmlwriter_write_attribute( $memory, 'xmlns', 'http://www.wapforum.org/DTD/xhtml-mobile10.dtd'); xmlwriter_write_attribute( $memory, 'xm:lang', 'en'); xmlwriter_start_element($memory,'head'); // <head> xmlwriter_write_element ($memory,'title', 'Test WAP Document'); xmlwriter_end_element($memory); // </head> xmlwriter_start_element($memory,'body'); // <body> xmlwriter_start_element($memory,'ol'); // <ol> xmlwriter_write_element ($memory,'li', 'One Item'); xmlwriter_write_element ($memory,'li', 'Another Item'); xmlwriter_write_element ($memory,'li', 'Another Item'); xmlwriter_end_element($memory); // </ol> xmlwriter_end_element($memory); // </body> xmlwriter_end_element($memory); // </html> xmlwriter_end_dtd($memory); $xml = xmlwriter_output_memory($memory,true); ?> Output: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"> <html xmlns="http://www.wapforum.org/DTD/xhtml-mobile10.dtd" xm:lang="en"> <head> <title>Test WAP Document</title> </head> <body> <ol> <li>One Item</li> <li>Another Item</li> <li>Another Item</li> </ol> </body> </html> yves sucaet
If you want your XML-output to be seen as XML by the browser, you need to modify your header. The XmlWriter does not do this for you! Therefore, the first line of your script should be: header("Content-type: text/xml"); alexandre arica
How to generate a simple XML document for a XSL-Transformation purpose. We have 3 files: - 'index.php' : output a XML document - 'XmlConstruct.class.php' : allow to construct a XML document with 'xmlwriter' - 'index.xsl' : contains a XSLT document Contents of the file 'index.php' : <?php $contents = array('page_title' => 'Generate a XHTML page from XML+XSLT files', 'welcome_msg' => 'Simple XHTML document from XML+XSLT files!'); require('XmlConstruct.class.php'); $XmlConstruct = new XmlConstruct('rootElement', 'index.xsl'); $XmlConstruct->fromArray($contents); $XmlConstruct->output(); ?> Contents of the file 'XmlConstruct.class.php' : <?php /** * Construct a simple XML document. * This class inherits from the (PHP) class 'xmlwriter'. * You will need at least PHP 5.1.2 * * @author Alexandre Arica * @since 16 April 2006 * @version 1.0 modified the 16 April 2006 */ class XmlConstruct extends XMLWriter { /** * Constructor. * @param string $prm_rootElementName A root element's name of a current xml document * @param string $prm_xsltFilePath Path of a XSLT file. * @access public * @param null */ public function __construct($prm_rootElementName, $prm_xsltFilePath=''){ $this->openMemory(); $this->setIndent(true); $this->setIndentString(' '); $this->startDocument('1.0', 'UTF-8'); if($prm_xsltFilePath){ $this->writePi('xml-stylesheet', 'type="text/xsl" href="'.$prm_xsltFilePath.'"'); } $this->startElement($prm_rootElementName); } /** * Set an element with a text to a current xml document. * @access public * @param string $prm_elementName An element's name * @param string $prm_ElementText An element's text * @return null */ public function setElement($prm_elementName, $prm_ElementText){ $this->startElement($prm_elementName); $this->text($prm_ElementText); $this->endElement(); } /** * Construct elements and texts from an array. * The array should contain an attribute's name in index part * and a attribute's text in value part. * @access public * @param array $prm_array Contains attributes and texts * @return null */ public function fromArray($prm_array){ if(is_array($prm_array)){ foreach ($prm_array as $index => $text){ $this->setElement($index, $text); } } } /** * Return the content of a current xml document. * @access public * @param null * @return string Xml document */ public function getDocument(){ $this->endElement(); $this->endDocument(); return $this->outputMemory(); } /** * Output the content of a current xml document. * @access public * @param null */ public function output(){ header('Content-type: text/xml'); echo $this->getDocument(); } } ?> Contents of the file 'index.xsl' : <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/xhtml1/strict"> <xsl:output method="html" encoding="utf-8" /> <xsl:template match="rootElement"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title><xsl:value-of select="page_title" /></title> </head> <body> <xsl:value-of select="welcome_msg" /> </body> </html> </xsl:template> </xsl:stylesheet> robajz a robajz . info
Hi, There already is a class xmlWriter, although it is not documented. This is a rewrite of the example from [http://cz2.php.net/manual/en/ref.xmlwriter.php#64484 Carlos Averett] and works well on my php 5.1.6 <?php $xw = new xmlWriter(); $xw->openMemory(); $xw->startDocument('1.0','UTF-8'); $xw->startDtd('html','-//WAPFORUM//DTD XHTML Mobile 1.0//EN', 'http://www.wapforum.org/DTD/xhtml-mobile10.dtd'); $xw->endDtd(); $xw->startElement ('html'); // <html> $xw->writeAttribute( 'xmlns', 'http://www.wapforum.org/DTD/xhtml-mobile10.dtd'); $xw->writeAttribute( 'xm:lang', 'en'); $xw->startElement('head'); // <head> $xw->writeElement ('title', 'Test WAP Document'); $xw->endElement(); // </head> $xw->startElement('body'); // <body> $xw->startElement('ol'); // <ol> $xw->writeElement ('li', 'One Item & <sss <ss />></ss>'); $xw->writeElement ('li', 'Another Item'); $xw->writeElement ('li', 'Another Item'); $xw->endElement(); // </ol> $xw->endElement(); // </body> $xw->endElement(); // </html> $xw->endDtd(); print $xw->outputMemory(true); ?> |
Change Language.NET Functions Apache-specific Functions Alternative PHP Cache Advanced PHP debugger Array Functions Aspell functions [deprecated] BBCode Functions BCMath Arbitrary Precision Mathematics Functions PHP bytecode Compiler Bzip2 Compression Functions Calendar Functions CCVS API Functions [deprecated] Class/Object Functions Classkit Functions ClibPDF Functions [deprecated] COM and .Net (Windows) Crack Functions Character Type Functions CURL Cybercash Payment Functions Credit Mutuel CyberMUT functions Cyrus IMAP administration Functions Date and Time Functions DB++ Functions Database (dbm-style) Abstraction Layer Functions dBase Functions DBM Functions [deprecated] dbx Functions Direct IO Functions Directory Functions DOM Functions DOM XML Functions enchant Functions Error Handling and Logging Functions Exif Functions Expect Functions File Alteration Monitor Functions Forms Data Format Functions Fileinfo Functions filePro Functions Filesystem Functions Filter Functions Firebird/InterBase Functions Firebird/Interbase Functions (PDO_FIREBIRD) FriBiDi Functions FrontBase Functions FTP Functions Function Handling Functions GeoIP Functions Gettext Functions GMP Functions gnupg Functions Net_Gopher Haru PDF Functions hash Functions HTTP Hyperwave Functions Hyperwave API Functions i18n Functions IBM Functions (PDO_IBM) IBM DB2 iconv Functions ID3 Functions IIS Administration Functions Image Functions Imagick Image Library IMAP Informix Functions Informix Functions (PDO_INFORMIX) Ingres II Functions IRC Gateway Functions PHP / Java Integration JSON Functions KADM5 LDAP Functions libxml Functions Lotus Notes Functions LZF Functions Mail Functions Mailparse Functions Mathematical Functions MaxDB PHP Extension MCAL Functions Mcrypt Encryption Functions MCVE (Monetra) Payment Functions Memcache Functions Mhash Functions Mimetype Functions Ming functions for Flash Miscellaneous Functions mnoGoSearch Functions Microsoft SQL Server Functions Microsoft SQL Server and Sybase Functions (PDO_DBLIB) Mohawk Software Session Handler Functions mSQL Functions Multibyte String Functions muscat Functions MySQL Functions MySQL Functions (PDO_MYSQL) MySQL Improved Extension Ncurses Terminal Screen Control Functions Network Functions Newt Functions NSAPI-specific Functions Object Aggregation/Composition Functions Object property and method call overloading Oracle Functions ODBC Functions (Unified) ODBC and DB2 Functions (PDO_ODBC) oggvorbis OpenAL Audio Bindings OpenSSL Functions Oracle Functions [deprecated] Oracle Functions (PDO_OCI) Output Control Functions Ovrimos SQL Functions Paradox File Access Parsekit Functions Process Control Functions Regular Expression Functions (Perl-Compatible) PDF Functions PDO Functions Phar archive stream and classes PHP Options&Information POSIX Functions Regular Expression Functions (POSIX Extended) PostgreSQL Functions PostgreSQL Functions (PDO_PGSQL) Printer Functions Program Execution Functions PostScript document creation Pspell Functions qtdom Functions Radius Rar Functions GNU Readline GNU Recode Functions RPM Header Reading Functions runkit Functions SAM - Simple Asynchronous Messaging Satellite CORBA client extension [deprecated] SCA Functions SDO Functions SDO XML Data Access Service Functions SDO Relational Data Access Service Functions Semaphore SESAM Database Functions PostgreSQL Session Save Handler Session Handling Functions Shared Memory Functions SimpleXML functions SNMP Functions SOAP Functions Socket Functions Standard PHP Library (SPL) Functions SQLite Functions SQLite Functions (PDO_SQLITE) Secure Shell2 Functions Statistics Functions Stream Functions String Functions Subversion Functions Shockwave Flash Functions Swish Functions Sybase Functions TCP Wrappers Functions Tidy Functions Tokenizer Functions Unicode Functions URL Functions Variable Handling Functions Verisign Payflow Pro Functions vpopmail Functions W32api Functions WDDX Functions win32ps Functions win32service Functions xattr Functions xdiff Functions XML Parser Functions XML-RPC Functions XMLReader functions XMLWriter Functions XSL functions XSLT Functions YAZ Functions YP/NIS Functions Zip File Functions Zlib Compression Functions |