函数 getProduct Prestashop
Function getProduct 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 的产品。
这就是为什么我呼吁你尝试帮助我!
提前感谢您的帮助
使用构造函数通过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
}
我通常不是那种会在论坛上提问的人,因为我总是喜欢自己搜索。
只有在这里我被困在一个我不太明白的问题上!
我尝试恢复所有它运行良好的产品:
$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 的产品。
这就是为什么我呼吁你尝试帮助我!
提前感谢您的帮助
使用构造函数通过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
}