What is the best PHP request routing class? #request routing
Edit
by Kennedy - 9 years ago (2015-09-14)
I want to route my PHP HTML templates for easy navigation
| I have been working with Node's server framework Express and I want to a find similar application of routing in PHP. |
Ask clarification
2 Recommendations
PHP Web MVC Framework: MVC framework providing autogenerated MySQL models
This package is a MVC framework providing autogenerated MySQL models.
It provides base classes for creating Web applications like controllers, models and view classes, as well as, a set of MVC components for commons database operations like search, sort, paginate etc.
It uses the paradigm of "convention over configuration" for routing the requests to appropriate subsystem/controller
It avoids the mixing of HTML code with PHP code so that Web designers and programmers can cooperate better with each other.
| by Saro Carvello package author 515 - 8 years ago (2017-03-14) Comment
This framework can route each URL request to an appropriate class or class method.
For example http:/mydomain/myclass/mymethod
|
PHP API Server: Route requests to API calls to handler classes
This class can route requests to API calls to handler classes.
It takes as parameters the name of an API call being invoked by a client via HTTP and an array of request parameters.
If the called API function is named Describe, the router class loads a class named Describe from the API directory path and makes the request be handled by that class.
For other API calls, the name of the call up to the / character defines the class that will handle the API call.
The name in front of the first / character defines the API call function name that is invoked on the API call handler class.
The router class checks first if a class file exists with that class name and loads it in that case. The router class also checks if the handler class also has a function with the invoked name before calling that handler class function.
API call error responses are returned in JSON encoded format.
| by Manuel Lemos 26695 - 9 years ago (2015-09-21) Comment
There is this request router class that lets you handle requests with your own classes depending on the URL path.
I am not sure how similar it can be with the Express framework because I do not use it. |