末使用數字我有以下我的主控制器笨 - 我不能網址
public function chapter-1() {
$data['title'] = "Hello";
$this->load->view("site_head", $data);
$this->load->view("site_header");
$this->load->view("site_content");
$this->load->view("site_footer");
}
但是當我寫「公共職能章-1」,1號亮起橙色,我希望可以使用第1章將www.webpage.com/chapter-1加入我的網站。我怎樣才能完成它?
功能名稱不能包含連字符('-')使用下劃線。像這個'chapter_1' –
只需將函數名稱更改爲chapter1並且它應該可以工作。 – Hackerman