31/03/2010, 11:10
|
| | | Fecha de Ingreso: octubre-2007 Ubicación: Donde caiga la noche, si mi hijo me deja
Mensajes: 691
Antigüedad: 17 años, 2 meses Puntos: 5 | |
Respuesta: Clases Estaticas Consultando el manual: A property declared as static can not be accessed with an instantiated class object (though a static method can).
Because static methods are callable without an instance of the object created, the pseudo-variable $this is not available inside the method declared as static.
Static properties cannot be accessed through the object using the arrow operator -> |