我有一个函数需要从 URL 中提取参数,就像 CI 应该做的那样。但它没有这样做。我的网址是 domain.com/lasers/en/acme。
我的激光课是:
class Lasers extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->model('products_model');
$this->load->model('common_model');
$this->load->model('select_country_model');
$this->load->model('markets_materials_model');
}
function index($lang = NULL, $laser = NULL)
{
$query = $this->products_model->get_product_content($laser, $lang);
}
模型在构造函数中加载。我需要的 $lang 是“en”,而我需要的 $laser 是“acme”。那么为什么这不起作用呢?函数中的参数顺序正确,所以我看不出有什么问题。