mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
expand overloading docs
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@347517 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
417eda23c6
commit
0c97611503
1 changed files with 5 additions and 4 deletions
|
@ -105,23 +105,24 @@
|
|||
|
||||
<para>
|
||||
<link linkend="object.set">__set()</link> is run when writing data to
|
||||
inaccessible properties.
|
||||
inaccessible (protected or private) or non-existing properties.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
<link linkend="object.get">__get()</link> is utilized for reading data from
|
||||
inaccessible properties.
|
||||
inaccessible (protected or private) or non-existing properties.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
<link linkend="object.isset">__isset()</link> is triggered by calling
|
||||
<function>isset</function> or <function>empty</function>
|
||||
on inaccessible properties.
|
||||
on inaccessible (protected or private) or non-existing properties.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
<link linkend="object.unset">__unset()</link> is invoked when
|
||||
<function>unset</function> is used on inaccessible properties.
|
||||
<function>unset</function> is used on inaccessible (protected or private)
|
||||
or non-existing properties.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue