recherche

Maison  >  Questions et réponses  >  le corps du texte

Fonction Prestashop : Obtenir des informations sur le produit

C’est justement ici que je suis bloqué sur un problème que je ne comprends pas bien !

J'ai essayé de restaurer tout ce qui fonctionnait bien :

        $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);

Sauf que je n'ai besoin d'afficher que les produits avec un identifiant prédéfini.

P粉298305266P粉298305266229 Il y a quelques jours354

répondre à tous(1)je répondrai

  • P粉410239819

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

    Pass id_product获取特定的Productinstance en utilisant le constructeur.

    /** @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
    }
    

    répondre
    0
  • Annulerrépondre