Is there any PHP oriented programming in practice?

I have been studying PHP for a while and also read some OOP tutorials. I tried to run my own site using OOP PHP, but I was completely lost. I am not sure what to do in a real project. I think maybe I need some practical lessons that talk about real projects.

I tried to read some PHP infrastructure code, such as CodeIgniter, but I cannot understand all of them. Are there any textbooks dedicated to the real project and fully explained?

+4
source share
5 answers

Here are some links to Net Tuts Plus, this is a very good blog if you are serious about web development, there are so many useful articles, tutorials and tips. And the link may not work immediately, they have had problems with the server over the past few days.

Find out OOP as soon as possible

How to create a blog with OOP

OOP in the real world and MySQL

+4
source

for codeigniter, try two video tutorials to create a very simple blog

0
source

You might want to check out the Jobeet tutorial, which uses the high-value PHP framework called Symfony. Understanding this means that you understand OOP well. From the drop down chapter:

This book describes how to create a web application with a symfony framework, step by step from the specification to the implementation. It is intended for beginners who want to learn symfony, understand how it works, and also learn about the best web development practices.

Check it out: http://www.symfony-project.org/jobeet/1_4/Doctrine/en/01

0
source

CakePHP.

If you are a reader of documentation, theres a manual (aka The Cookbook)

http://book.cakephp.org/

If you are looking for real-world examples, they have The Bakery:

http://bakery.cakephp.org/ (tons of large projects submitted using CakePHP to learn)

If you're looking for walkthroughs, IBM offers a set of tutorials:

http://www.ibm.com/developerworks/opensource/tutorials/os-php-cake1/index.html

0
source

Source: https://habr.com/ru/post/1302097/


All Articles