假设我有view
方法通过URI接收变量。
离。 http://www.domain.com/item/view/200
将传入变量转换为正确的类型是否有意义?在这种情况下,将$item_id
转换为int
,这是预期的。
例如,在控制器中......
function view($item_id) {
if ( $this->item_model->checkItem( (int) $item_id )) {
...
}
}
答案 0 :(得分:1)
将段传递给函数的方法就像
$segment = $this->uri->segment(2); //get the second segmention
// ^ You can send a default Values as well if itemid is not set
// Like: $this -> uri -> segment(2, '0')
//now pass it to the function you need