/*我的理解*/
/*result*/
public function getProductByOption($id ='',$option='data')
{
$query = $this->db
->query(
"select * from `product`
where brand=(select name from product_brand where id={$id})");
if ( $option != 'data')
{
return $this->query->num_rows();
}
return $this->query->result();
}