当前位置: 首页>>代码示例>>PHP>>正文


PHP product::where方法代码示例

本文整理汇总了PHP中product::where方法的典型用法代码示例。如果您正苦于以下问题:PHP product::where方法的具体用法?PHP product::where怎么用?PHP product::where使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在product的用法示例。


在下文中一共展示了product::where方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: validarNoRepitname

 public function validarNoRepitname($text)
 {
     $products = product::where('nombre', '=', $text)->first();
     return $products;
 }
开发者ID:softwareDiaz,项目名称:prueba,代码行数:5,代码来源:ProductRepo.php

示例2: getAllProduct

 /**
  * Productscat::getAllProduct()
  * get all the product belong to a category ,direct or indirect).
  * @param mixed $condition
  * @param mixed $offset
  * @param mixed $limit
  * @return
  */
 function getAllProduct($condition = array(), $orderBy = "id", $orderDirection = "desc", $offset = null, $limit = null)
 {
     $listChildCat = $this->getAllChildCat();
     $listIntChildCat = array();
     foreach ($listChildCat as $row) {
         array_push($listIntChildCat, $row->id);
         //     array_push($listNameChildCat,$row->name);
     }
     array_push($listIntChildCat, $this->id);
     //$CI =& get_instance();
     //$CI->firephp->log("child",$listNameChildCat);
     $product = new product();
     $product->where_in_related_productcat('id', $listIntChildCat);
     $product->order_by($orderBy, $orderDirection);
     if (count($condition) > 0) {
         $product->where($condition);
     }
     $product->distinct();
     $product->get_iterated($limit, $offset);
     return $product;
 }
开发者ID:lxthien,项目名称:batdongsan,代码行数:29,代码来源:productcat.php

示例3: priceTable

 function priceTable($id = "0")
 {
     $dis['base_url'] = base_url();
     if ($id != "0") {
         $id = explode("_", $id);
         $id = $id[1];
         $manu = new Productmanufacture($id);
         $product = new product();
         $product->where('productmanufacture_id', $id);
         $product->where('status', enum::PRODUCT_AVAILABLE);
         $product->order_by('name', 'asc');
         $product->get_iterated();
         $dis['product'] = $product;
         $this->load->view('front/product/ajaxPriceTable', $dis);
     } else {
         //manufacture
         $manu = new Productmanufacture();
         $manu->where('isShow', 1);
         $manu->get_iterated();
         $dis['manu'] = $manu;
         $dis['view'] = 'product/priceTable';
         $this->viewfront($dis);
     }
 }
开发者ID:lxthien,项目名称:batdongsan,代码行数:24,代码来源:fgalleries.php

示例4: search

 function search()
 {
     $viewMode = $this->uri->segment(2, "") == "" ? "ma-tran" : $this->uri->segment(2);
     $orderBy = $this->uri->segment(3, "") == "" ? "moi-nhat" : $this->uri->segment(3);
     $page = $this->uri->segment(4, "") == "" ? "trang-1" : $this->uri->segment(4);
     if ($_SERVER['REQUEST_METHOD'] == "POST") {
         $searchKey = $this->input->post('searchKey');
         $this->session->set_userdata('searchKey', $searchKey);
     }
     $searchKey = $this->session->userdata('searchkey');
     $limit = $viewMode == "ma-tran" ? 15 : 10;
     $offset = ($this->getPageNumber($page) - 1) * $limit;
     $product = new Product();
     if (trim($searchKey) != "") {
         $product->like('name', $searchKey);
     }
     $product->where('active', 1);
     $product->order_by($this->getOrderBy($orderBy), $this->getOrderDirection($orderBy));
     $product->get_paged_iterated();
     $dis['product'] = $product;
     $dis['pageUrl'] = "tim-kiem";
     $config['base_url'] = site_url($url . "/" . $viewMode . "/" . $orderBy . "/trang-");
     $config['total_rows'] = $product->paged->total_rows;
     $config['per_page'] = $limit;
     $config['use_page_numbers'] = TRUE;
     $config['uri_segment'] = 4;
     $config['num_links'] = 3;
     $config['full_tag_open'] = '<span class="pagin">';
     $config['full_tag_close'] = "</span>";
     $config['first_link'] = FALSE;
     $config['first_tag_open'] = '';
     $config['first_tag_close'] = '';
     $config['last_link'] = FALSE;
     $config['last_tag_open'] = '';
     $config['last_tag_close'] = '';
     $config['next_link'] = '<img src="' . base_url() . 'images/pagination_next.png" />';
     $config['next_tag_open'] = '';
     $config['next_tag_close'] = '';
     $config['prev_link'] = '<img src="' . base_url() . 'images/pagination_pre.png" /';
     $config['prev_tag_open'] = '';
     $config['prev_tag_close'] = '';
     $config['num_tag_open'] = '';
     $config['num_tag_close'] = '';
     $config['cur_tag_open'] = '<span class="active">';
     $config['cur_tag_close'] = '</span>';
     $this->pagination->initialize($config);
     if ($viewMode == 'ma-tran') {
         $dis['view'] = 'product/product_grid';
     } else {
         $dis['view'] = 'product/product_list';
     }
     $productSaleOff = new product();
     $productSaleOff->where('active', 1);
     $productSaleOff->where('isSale', 1);
     $productSaleOff->order_by('id', 'desc');
     $productSaleOff->get_iterated(15);
     $dis['productSaleOff'] = $productSaleOff;
     $dis['base_url'] = base_url();
     $this->viewfront($dis);
 }
开发者ID:lxthien,项目名称:batdongsan,代码行数:60,代码来源:fsearch.php


注:本文中的product::where方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。