本文整理汇总了PHP中Eccube\Framework\Util\Utils::getSaveImagePath方法的典型用法代码示例。如果您正苦于以下问题:PHP Utils::getSaveImagePath方法的具体用法?PHP Utils::getSaveImagePath怎么用?PHP Utils::getSaveImagePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Eccube\Framework\Util\Utils
的用法示例。
在下文中一共展示了Utils::getSaveImagePath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: lfGetProductImage
/**
* 商品画像のパスを取得する
*
* @param $arrForm
* @return string 指定された商品画像のパス
*/
public function lfGetProductImage($arrForm)
{
$objQuery = Application::alias('eccube.query');
$table = 'dtb_products';
$col = $arrForm['image_key'];
$product_id = $arrForm['product_id'];
//指定されたカラムが存在する場合にのみ商品テーブルからファイル名を取得
if (Application::alias('eccube.helper.db')->columnExists($table, $col, '', '', false)) {
$product_image = $objQuery->get($col, $table, 'product_id = ?', array($product_id));
} else {
GcUtils::gfPrintLog('invalid access :resize_image.php image_key=' . $col);
$product_image = '';
}
// ファイル名が正しく、ファイルが存在する場合だけ、$fileを設定
$file = Utils::getSaveImagePath($product_image);
return $file;
}