搜尋

首頁  >  問答  >  主體

Prestashop功能:取得產品訊息

只是在這裡我陷入了一個我不太理解的問題!

我嘗試恢復所有運作良好的產品:

        $id_lang = (int)Context::getContext()->language->id;
        $start = 0;
        $limit = 100;
        $order_by = 'id_product';
        $order_way = 'DESC';
        $id_category = false;
        $only_active = true;
        $context = null;
        $all_products = Product::getProducts($id_lang, $start, $limit, $order_by, $order_way, $id_category, $only_active, $context);

除了我只需要顯示具有預定義 ID 的產品。

P粉298305266P粉298305266285 天前395

全部回覆(1)我來回復

  • P粉410239819

    P粉4102398192024-03-30 15:20:32

    使用建構函式透過id_product取得特定的Product實例。

    /** @var int Specific Product ID */
    $id_product = 1337;
    
    /** @var Product Specific Product instance */
    $specific_product = new Product($id_product);
    
    if(false !== $specific_product) {
      // Product found in database, so can use instance
    } else {
      // Product does not exist
    }
    

    回覆
    0
  • 取消回覆