April 2023

1 post found

Python Tips

Useful Python tricks...
ROUTE DEBUG INFORMATION
Route Pattern: ~^/archive/(?<month>\d{2})/(?<year>\d{4})$~i
Matched Route: archive
Request URI: /archive/04/2023
Controller: ArchiveController@index
User Role: None
Request Method: GET
Captured Parameters:
[0] => '/archive/04/2023'
'month' => '04'
[1] => '04'
'year' => '2023'
[2] => '2023'
Execution Time: 0.0879 seconds