link to variable property names description from oop5 properties

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@327106 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Peter Cowburn 2012-08-13 19:56:09 +00:00
parent f292681131
commit 666b6aa9a5

View file

@ -43,7 +43,8 @@
<para>
Within class methods the properties, constants, and methods may be
accessed by using the form <varname>$this-&gt;property</varname>
(where <literal>property</literal> is the name of the property)
(where <literal>property</literal> is the name of the property; see
also <link linkend="language.variables.variable">variable property names</link>)
unless the access is to a static property within the context of a
static class method, in which case it is accessed using the
form <varname>self::$property</varname>. See <link linkend="language.oop5.static">Static