1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- Purpose: xml -->
<!-- Membership: bundled, external -->
<book xml:id="book.dom" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Document Object Model</title>
<titleabbrev>DOM</titleabbrev>
<preface xml:id="intro.dom">
&reftitle.intro;
<para>
The DOM extension allows you to operate on XML documents through the DOM
API with PHP 5.
</para>
<para>
For PHP 4, use <link linkend="ref.domxml">DOM XML</link>.
</para>
<note>
<para>
DOM extension uses UTF-8 encoding. Use <function>utf8_encode</function>
and <function>utf8_decode</function> to work with texts in ISO-8859-1
encoding or <link linkend="ref.iconv">Iconv</link> for other encodings.
</para>
</note>
</preface>
&reference.dom.setup;
&reference.dom.constants;
&reference.dom.domattr;
&reference.dom.domcharacterdata;
&reference.dom.domcomment;
&reference.dom.domdocument;
&reference.dom.domdocumentfragment;
&reference.dom.domdocumenttype;
&reference.dom.domelement;
&reference.dom.domentity;
&reference.dom.domentityreference;
&reference.dom.domexception;
&reference.dom.domimplementation;
&reference.dom.domnamednodemap;
&reference.dom.domnode;
&reference.dom.domnodelist;
&reference.dom.domnotation;
&reference.dom.domprocessinginstruction;
&reference.dom.domtext;
&reference.dom.domxpath;
<!-- FIXME:
<section xml:id='dom.class.domnamelist'>
<title><classname>DOMNameList</classname></title>
<para>
</para>
<section xml:id='dom.class.domnamelist.methods'>
&reftitle.methods;
<itemizedlist>
<listitem>
<para><xref linkend='function.dom-domnamelist-getname' /> - </para>
</listitem>
<listitem>
<para><xref linkend='function.dom-domnamelist-getnamespaceuri' /> - </para>
</listitem>
</itemizedlist>
</section>
<section xml:id='dom.class.domnamelist.properties'>
&reftitle.properties;
<table>
<title/>
<tgroup cols="4">
<thead>
<row>
<entry>Name</entry>
<entry>Type</entry>
<entry>Read-only</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>length</entry>
<entry>int</entry>
<entry>yes</entry>
<entry>
The number of pairs (name and namespaceURI) in the list. The range
of valid child node indices is 0 to <literal>length - 1</literal>
inclusive.
</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
</section>-->
<reference xml:id="ref.dom" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>DOM &Functions;</title>
&reference.dom.entities.functions;
</reference>
</book>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|