BcBaserHelper::getImg PHP 메소드

getImg() 공개 메소드

画像タグを取得する
public getImg ( string $path, array $options = [] ) : string
$path string 画像のパス(img フォルダからの相対パス)
$options array オプション(主にHTML属性) ※ パラメータについては、HtmlHelper::image() を参照。
리턴 string 画像タグ
    public function getImg($path, $options = array())
    {
        return $this->BcHtml->image($path, $options);
    }