関数リファレンス/getParams
提供: baserCMS公式ガイド
目次
説明
URLのパラメータ情報を返す。
使い方
$this->BcBaser->getParams();
パラメータ
戻り値
(array)URLのパラメータ情報の配列
用例
基本
コード
<?php var_dump($this->BcBaser->getParams()); ?>
応用
コード
出力
主なreturnデータは
http://basercms.net/news/index/example/test?name=value の場合
- 'plugin' => blog (利用しているプラグイン)
- 'pass' => [0] => 'example'
- [1] => 'test'
- 'isAjax' => (boolean)false
- 'query' => 'name' => 'value'
- 'url' => 'news/index/fuga/hoge'
- 'here' => '/news/index/fuga/hoge'