Codeigniter Routes regex - using dashes in controller/method names

前端 未结 9 1237
小鲜肉
小鲜肉 2020-11-29 01:32

I\'m looking for a one line route to route dashed controller and method names to the actual underscored controller and method names.

For example the URL



        
9条回答
  •  萌比男神i
    2020-11-29 01:45

    I'm not sure if you could do that with a route...

    However, somewhere in the Codeigniter core libraries (possibly Router or URI) will be something that converts the underscored uris into a camelcase class name.

    I had a quick look and couldn't find it, but if you do, just copy that library to your application/libraries folder, and modify it there.

提交回复
热议问题