我只是为自定义Prestashop模块开发代码。我可以使用Product::getProducts(...)
访问我模块中所有产品的列表,但是我不知道如何访问具有其ID的指定产品的详细信息。有人可以告诉我们如何实现这一点?
答案 0 :(得分:1)
// there is Product object that contains all details of certain product.
// for arguments details see in classes/Product.php constructor method
$product = new Product($id_of_product_that_you_have, false, $id_lang);
echo $product->name, $product->description; // etc
答案 1 :(得分:0)
要获得产品的具体描述, 首先,您必须创建产品对象,并且您必须知道要获取描述的产品的ID。
$product = new Product($product_id, false, $id_lang);
$product_description = $product->description;
d($product_description);