我有一個網址獲取控制器的指標函數URI段 - 笨
www.xample.com/app/pay/11
,其中工資是我的控制器。 控制器被定義爲
class Pay extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->library('tank_auth');
$this->load->model('users');
}
function index()
{
//How can I get 11 from uri ?
}
}
Im不使用使用索引function.How我能得到值11的任何附加功能here.Im?
這給出了一個404錯誤,因爲沒有FUNCTION 「11」 在class.Codeigniter對待'11 '作爲函數 – Piya
首先加載url助手。 – sunny
我想更多地描述你,但現在需要離開,希望我的回答對你有幫助。只要看看codeigniter用戶指南,你可以得到關於codeigniter的一切 – sunny