本文整理汇总了PHP中SC_Utils::sfGetProductClassId方法的典型用法代码示例。如果您正苦于以下问题:PHP SC_Utils::sfGetProductClassId方法的具体用法?PHP SC_Utils::sfGetProductClassId怎么用?PHP SC_Utils::sfGetProductClassId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SC_Utils
的用法示例。
在下文中一共展示了SC_Utils::sfGetProductClassId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
public function testSfGetProductClassId_存在しない製品IDを指定した場合_nullが返る()
{
$this->expected = null;
$this->actual = SC_Utils::sfGetProductClassId('9999');
$this->verify('取得結果が空');
}
示例2: lfGetProduct
function lfGetProduct($product_id)
{
$objQuery = new SC_Query();
$col = "*";
$table = "vw_products_nonclass AS noncls ";
$where = "product_id = ?";
$arrRet = $objQuery->select($col, $table, $where, array($product_id));
// カテゴリID を取得
$arrRet[0]['category_id'] = $objQuery->getCol("dtb_product_categories", "category_id", "product_id = ?", array($product_id));
//編集時に規格IDが変わってしまうのを防ぐために規格が登録されていなければ規格IDを取得する
if ($this->lfCheckNonClass($_POST['product_id'])) {
$arrRet[0]['product_class_id'] = SC_Utils::sfGetProductClassId($product_id, "0", "0");
}
return $arrRet[0];
}