Prestashop功能:取得產品訊息
P粉298305266
P粉298305266 2024-03-29 17:09:04
0
1
348

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

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

        $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粉298305266
P粉298305266

全部回覆(1)
P粉410239819

使用建構函式透過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
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!