2
CodeIgniter URI路由規則中的「(:any)」和「:any」之間有什麼區別?例如:CodeIgniter中「(:any)」和「:any」之間的區別是什麼?
segment_1/segment_2/:any = my_controller/function/$1
而且
segment_1/segment_2/(:any) = my_controller/function/$1
我沒有看到在CI文檔的解釋,不知道。 :)
我不認爲有任何區別。只需看一下源代碼,它只檢查':any'或':num'(不包括括號) – Craig
我會堅持使用括號'(:any)',因爲這是文檔所說的:[** Codeigniter路由通配符**](http://www.codeigniter.com/user_guide/general/routing.html?highlight=route#wildcards) – CodeGodie