PHP-manual | ||
---|---|---|
Föregående | Nästa |
The purpose of this extension is to allow overloading of object property access and method calls. Only one function is defined in this extension, overload() which takes the name of the class that should have this functionality enabled. The class named has to define appropriate methods if it wants to have this functionality: __get(), __set() and __call() respectively for getting/setting a property, or calling a method. This way overloading can be selective. Inside these handler functions the overloading is disabled so you can access object properties normally.
Varning |
Den här utbyggnaden är EXPERIMENTELL. Dess beteende -- inkluderat namnen på funktionerna, och allt annat dokumenterat om den här utbyggnaden -- kan ändras i framtida utgåvar av PHP utan något tillkännagivande. Använd den på egen risk. |
In order to use these functions, you must compile PHP with the --enable-overload option. Starting with PHP 4.3.0 this extension is enabled by default. You can disable overload support with --disable--overload.
Windows-versionen av PHP har inbyggt stöd för det här tillägget. Du behöver inte ladda några ytterligare tillägg för att använda dessa funktioner.
Not: Builtin support for overload is available with PHP 4.3.0.
Some simple examples on using the overload() function:
Varning |
As this is an experimental extension, not all things work. There is no __call() support currently, you can only overload the get and set operations for properties. You cannot invoke the original overloading handlers of the class, and __set() only works to one level of property access. |
Föregående | Hem | Nästa |
output_reset_rewrite_vars | Upp | overload |