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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 297078 $ -->
<!--
&internals2.intro;
&internals2.counter;
&internals2.buildsys.index; configure options, ext_skel, config.m4, config.w32, static vs. dynamic builds
&internals2.structure.index; ext_skel, module structure, globals, lifecycle, tests
&internals2.memory.index; management, persistence, TSRM
&internals2.variables.index; zval, hashtable, references, constants
&internals2.funcs.index; defining, arguments, return values, passthru, aliasing, exceptions
&internals2.objects.index; classes, inheritance, properties, methods, method-function mapping
&internals2.resources.index; defining, creating, retrieving, destroying
&internals2.ini.index; defining, retrieving, changing
&internals2.streams.index; using, wrappers, contexts, filters
&internals2.pdo.index; direct port of existing PDO docs
&internals2.faq.index; FAQ
&internals2.apiref.index; full index of all APIs, constants, macros, etc.
&internals2.ze1.index; old docs, quick list of major differences, short discussion re: OOP
&internals2.ze3.index; quick discussion of major changes, some details on Unicode
-->
<preface xml:id="internals2.preface" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook">
<title>Preface</title>
<simpara>
The Zend API has evolved considerably over time, as PHP has become a more
robust and widespread language. With the introduction of PHP 5 came the
Zend Engine 2 (ZE2). ZE2 came with an almost entirely new Object-Oriented
Programming (OOP) model and a number of improvements in the
API. PHP 6, which is still under active development at the time of this
writing, introduces the Zend Engine 3 (ZE3), which brings full Unicode
support to the language.
</simpara>
<warning>
<simpara>
This documentation is still under heavy development. The original Zend
documentation is preserved in its entirety in the
<link linkend="internals2.ze1">Zend Engine 1</link> section for those who
need it before this documentation is completed.
</simpara>
</warning>
<simpara>
This section of the manual is devoted to ZE2. While PHP 4.4 is still in
widespread use, the differences in how extensions are written in ZE1 are
small; a short reference to them is given in an appendix to this section.
ZE3's API may yet change significantly, and is covered in another appendix.
It will be more fully documented when PHP 6 enters a beta testing stage.
</simpara>
<simpara>
The documentation in this section is current as of PHP 5.2.11, the most
recent stable release of PHP 5.2 at the time of this writing. Notable
differences in the minor PHP 5 releases (5.0 through 5.3) are given as
appropriate.
</simpara>
</preface>
<!-- 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:"~/.phpdoc/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
-->
|