这些天,我一直在尝试学习一些php,为此我一直在github上阅读一些代码。我看到了这个项目,并决定从那里阅读代码,我一直在阅读这一行特定的代码,但我不知道它的真正含义。谁能向我解释? (对不起,我的傻瓜)
public function lilt(){
$this->genlib->ajaxOnly();
$this->load->helper('text');
//set the sort order
$orderBy = $this->input->get('orderBy', TRUE) ? $this->input->get('orderBy', TRUE) : "name";
$orderFormat = $this->input->get('orderFormat', TRUE) ? $this->input->get('orderFormat', TRUE) : "ASC";
//count the total number of items in db
$totalItems = $this->db->count_all('items');