首先是 CodeIgniter 的方法
function index($abc) {
xxxx
}
然後網址用 http://localhost/controller/index/1234
就可以把 1234 丟到 $abc 了
再來是 Zend Framework 的作法
public function indexAction()
{
$abc = $this->_getParam('abc');
}
然後網址用 http://localhost/controller/index/abc/1234
index 後面的 abc 代表 abc 這個變數,接著的 1234 代表賦予 abc 的值。
Zend Framework 還可以透過 $this->_getAllParams(); 來取得所有變數,當然變數名一樣是數值的前面那一個。
網址 http://localhost/controller/action/abc/123/def/456
透過 $data = $this->_getAllParams();
$data['abc'] = 123
$data['def'] = 456
沒有留言:
張貼留言