Item::getMainPicUrl PHP 메소드

getMainPicUrl() 공개 메소드

得到商品主图Url地址
public getMainPicUrl ( ) : type
리턴 type
    public function getMainPicUrl()
    {
        $img = $this->getMainPicPath();
        if (file_exists(dirname(F::basePath()) . $img)) {
            return F::baseUrl() . $this->getMainPicPath();
        } else {
            return $this->getHolderJs('350', '350');
        }
    }