Added some PHP5's

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@172202 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Aidan Lister 2004-11-07 11:43:22 +00:00
parent 5e19181d4f
commit d1a562e84a

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.16 $ -->
<!-- $Revision: 1.17 $ -->
<appendix id="tokens">
<title>List of Parser Tokens</title>
@ -86,6 +86,11 @@
<entry>class</entry>
<entry><link linkend="language.oop">classes and objects</link></entry>
</row>
<row>
<entry>T_CLONE</entry>
<entry>clone</entry>
<entry><link linkend="language.oop5">classes and objects</link>. PHP 5 only.</entry>
</row>
<row>
<entry>T_CLOSE_TAG</entry>
<entry>?> or %></entry>
@ -464,6 +469,21 @@
<entry>print()</entry>
<entry><function>print</function></entry>
</row>
<row>
<entry>T_PRIVATE</entry>
<entry>private</entry>
<entry><link linkend="language.oop5">classes and objects</link>. PHP 5 only.</entry>
</row>
<row>
<entry>T_PUBLIC</entry>
<entry>public</entry>
<entry><link linkend="language.oop5">classes and objects</link>. PHP 5 only.</entry>
</row>
<row>
<entry>T_PROTECTED</entry>
<entry>protected</entry>
<entry><link linkend="language.oop5">classes and objects</link>. PHP 5 only.</entry>
</row>
<row>
<entry>T_REQUIRE</entry>
<entry>require()</entry>