uygun denetleyiciye her isteği göndermek

0 Cevap php

I want to make a small web application, and I'm not sure how to go about this. What I want to do is send every request to the right controller. Kind of how CodeIgniter does it.

So if user asks for domain.com/video/details I want my bootstrap (index?) file to send him to the "Video" controller class and call the "details" method in that class.

Kullanıcı domain.com / profil / düzenlemek için sorarsa ben "Profil" controller sınıfına onu göndermek ve bu sınıfın "düzenle" yöntemi çağırmak istiyorum.

Birisi bunu nasıl açıklayabilir misiniz? MVC çerçeveler kullanarak bazı deneyimi var, ama kendimi "yazılı" MVC ile bir şey asla.

Teşekkürler!

Edit: I understand now how the url points to the right Controller, but I don't see where the object instance of the Controller is made, to call the right method?

0 Cevap