![]() |
Debug Bar feature: Change Matched Route Params with variables name & values - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Feature Requests (https://forum.codeigniter.com/forumdisplay.php?fid=29) +--- Thread: Debug Bar feature: Change Matched Route Params with variables name & values (/showthread.php?tid=65593) |
Debug Bar feature: Change Matched Route Params with variables name & values - mixinix - 06-28-2016 This example below using ReflectionMethod class (my self version): PHP Code: <?php PHP: 7.0.5 Controller: PHP Code: <?php namespace App\Controllers; URL: Code: example.com/products/shoes/penguin/13 Before (Debug Bar): Code: Routes Expected output (Debug Bar): Code: Routes RE: Debug Bar feature: Change Matched Route Params with variables name & values - kilishan - 06-29-2016 Looks pretty good to me. Care to work it up into a pull request? |