Google News
logo
FuelPHP - Interview Questions
What is Traversing Request instances in FuelPHP?
If you want to access other Requests, you can traverse them using two methods : $request->parent() and $request->children(). The parent is the Request during which the current Request was created (null for the main Request). The children are all the Requests created during the current Request.
Advertisement