这是 URI:example.com/index.php/products/shoes/sandals/123
这是相应的控制器:
<?php
class Products extends CI_Controller {
public function shoes($sandals, $id)
{
$this->some_DB_using_Model->getListUsing($sandals,$id)
}
}
?>
直接发送到模型是否安全$sandals
,或者我应该在发送之前应用过滤器。
编辑:
function getListUsing($p1,$p2){
$this->db->start_cache();
$this->db->select('a');
$this->db->select('b');
$this->db->select('c');
$this->db->where('p1',$p1);
$this->db->where('p2',$p2);
//then return the result
}