Home > Article > Backend Development > Talk about some of your feelings about writing a PHP framework
Talk about some of your feelings about writing a PHP framework
Personal feelings
I used to think that it was not difficult to build a framework. In fact, I think so now. It’s not that I am really good. In fact, I just think that, It is not difficult to create it, but it is precisely after you create it that you have to "nurture" it. This is the most difficult thing for me, and I have experienced it now.
Unknowingly, I have written 3 frameworks. In fact, they all imitate other people's frameworks, and they are definitely not as good as the others. Of course, I have incorporated some of my own ideas into them. However, there is still the last one left alive, and he is FastD. I don’t know if I don’t summarize it. I have been “growing” this thing for almost a year, and it feels pretty good. It is considered to be “good” after three frameworks. .
The first time FD was taken out, if I remember correctly, it was the first working week after the New Year in 2015. I took it out and demonstrated it to colleagues in the department. Everyone responded well, which made me So passionate. ??
Actually, to be honest, I feel like I am also a rookie and novice. The original intention of creating this framework was just to give it a try, and then develop it so that others can use it. At present, it can be regarded as achieving the goal, due to the influence of the Symfony
framework.
Personal opinion
Then let me talk about some of my opinions on the current PHP framework.
I think there are many php frameworks on the market now. In fact, each framework has its own good side, which can be used as a reference. In fact, I occasionally see in some groups "xxx is the best framework in the world, no one else", um, how crazy is this about the xxx framework, and "xxx is the best language in the world, no one else" "One" is the same. Although it is said to be an old joke, it is actually meaningless. Some people who have worked for a long time will also make these mistakes. Well, it's hard to say, well, just do it yourself.
I haven’t come into contact with many frameworks, just a few, very few. But in fact, if you are careful, you can find a very basic point: routing is the soul of the framework. It is not unreasonable to say that. Most of the frameworks we see currently only handle "one" thing, Http
request. And this request seems to be just a designated address composed of "controller" and "method", which is what we call routing in development. Each request is a route, and the one that passes through it at the first time must be Route, which is responsible for resolving to the specified method. The rest is to deal with it. As for whether it is MVC or something else, just customize it.
Hmm, and by the way, those of us who work in PHP must learn object-oriented well, we must learn object-oriented well, we must learn object-oriented well
Okay, Sao Nian, keep working hard.
I personally recommend learning several frameworks:
Symfony / Community
Laravel
Yaf
By the way, I would like to promote Swoole
PHP is more powerful than you think.
The above has introduced some of my feelings about writing a PHP framework, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.