+ 2

What is static functions???

8th Aug 2016, 12:55 PM
Sourabh
2 Respostas
+ 8
static function is a part of object oriented programming in PHP. to understand a static function you must first understand the basics of object oriented programming . a static function belongs to a class and not to its object. this function can be used to access static data members of that class. a call back to a static function does not require an object. this function can be called by using its class name
8th Aug 2016, 3:30 PM
Amar Agrawal
Amar Agrawal - avatar
0
"Объявление свойств и методов класса статическими позволяет обращаться к ним без создания экземпляра класса. Атрибут класса, объявленный статическим, не может быть доступен посредством экземпляра класса (но статический метод может быть вызван). Так как статические методы вызываются без создания экземпляра класса, то псевдо-переменная $this не доступна внутри метода, объявленного статическим." взято з сайту: http://php.net/manual/ru/language.oop5.static.php
31st Oct 2016, 3:58 PM
KsiuHa Kovalchuk
KsiuHa Kovalchuk - avatar