Closed GoogleCodeExporter closed 9 years ago
[deleted comment]
[deleted comment]
Hi, I don't understand your problem. What do you need to retrieve that URI
router lack of currently?
You can already do this with the framework:
http://localhost/a/b/c/d/e/?id=12¶m=xxx
and get this:
//$this->params
Array
(
[id] => a
[0] => b
[1] => c
[2] => d
[3] => e
)
//$_GET
Array
(
[id] => 12
[somthing] => xxx
)
$route['*']['catchall']['/:id'] = array('TestController', 'myFunction');
Original comment by darkredz
on 19 Jul 2010 at 3:37
The framework won't change the way PHP work, where get variables are retrieve
with $_GET.
Original comment by darkredz
on 19 Jul 2010 at 3:38
Original issue reported on code.google.com by
iphrai...@gmail.com
on 17 Jul 2010 at 12:16Attachments: