0
I’ve always used PHP without a framework. I use the MVC standard, but I only created a pro view folder, a pro controller and a pro model, but recently I decided to study a framework and it uses such a core and routers. I asked the teacher but he did not answer me (the course is online). There is another PHP course that I acquired recently, the idea of it is to use PHP "pure" to create our own framework, but again the course was going well until arriving at the core and router part
I may be talking nonsense, but in the case of Core, wouldn’t it be the same thing to simply create a file called Config? and in the case of Router, it’s not the same autoload thing?
– Otavio Fagundes
basically yes but the framework have many features already built in so that you do not need to worry about heavy configuration for example send emails, save files in the cloud and etc. the router follows the same principle, in it Oce will already have configurations ready for login, logout and etc. when you start studying pure PHP and create your own framework as said Voce will be able to better understand but for now good studies! :)
– RFL