Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lesson4 #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
## PHP ООП.
## Урок 4. Статические (static) свойства и методы

#### Необходимо:
1. Ознакомиться с предыдущими уроками

#### Ход урока:
1. Перейдите на ветку четвертого урока командой ```git checkout lesson4 --force```
2. Изучите файл **index.php**
3. Запустите сайт в браузере
4. Что выводится и почему?
5. На что похожи статические свойства?
6. Проделайте пару экспериментов и переходите к [уроку 5. Ключевые слова $this, self, static](https://github.com/altiore/mm/tree/lesson5)


## Список уроков:
1. [Введение. Тестируем локальный сервер](https://github.com/altiore/mm/tree/lesson1)
2. [Класс (class). Свойства и методы класса](https://github.com/altiore/mm/tree/lesson2)
3. [Область видимости свойств и методов класса (private, public, protected)](https://github.com/altiore/mm/tree/lesson3)
4. [Статические (static) свойства и методы](https://github.com/altiore/mm/tree/lesson4)
5. [Ключевые слова $this, self, static](https://github.com/altiore/mm/tree/lesson5)
6. [Магические методы (__construct(), __invoke()... )](https://github.com/altiore/mm/tree/lesson6)
7. [Типичная структура рабочих папок](https://github.com/altiore/mm/tree/lesson7)
8. [Пространства имен (namespace)](https://github.com/altiore/mm/tree/lesson8)
9. [Наследование (extends), ключевое слово "parent::"](https://github.com/altiore/mm/tree/lesson9)
10. [Полиморфизм и инкапсуляция - сложные названия простых вещей](https://github.com/altiore/mm/tree/lesson10)
11. [Абстрактные (abstract) и финальные (final) классы и методы](https://github.com/altiore/mm/tree/lesson11)
12. [Автоматическая загрузка (autoload) классов](https://github.com/altiore/mm/tree/lesson12)
13. [Интерфейс (interface). Сходства с абстрактным классом, различия](https://github.com/altiore/mm/tree/lesson13)
14. [Трэйт (trait)](https://github.com/altiore/mm/tree/lesson14)
15. [Обработка ошибок (error hendler), исключения (exceptions)](https://github.com/altiore/mm/tree/lesson15)
16. [Замыкания (closure)](https://github.com/altiore/mm/tree/lesson16)