LoginSignup
13
12

More than 5 years have passed since last update.

CodeIgniterでURLの情報を取得

Posted at

CodeIgniterでURL情報を取得する便利メソッド

$this->router->fetch_method();
$this->router->fetch_class();

CodeIgniterの開発で以下のようなURLのページにアクセスした場合
http://hogeho.com/main/top

mainクラスの中のtopメソッドにアクセスしていることになる。

echo $this->router->fetch_class();
#結果: main
echo $this->router->fetch_method();

#結果: top
13
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
12