Nvd\Crud\Html::endTag PHP 메소드

endTag() 공개 정적인 메소드

public static endTag ( $tag )
    public static function endTag($tag)
    {
        return "</{$tag}>";
    }

Usage Example

예제 #1
0
 protected function showTextarea()
 {
     $output = Html::startTag("textarea", $this->attributes);
     $output .= $this->value;
     $output .= Html::endTag("textarea");
     return $output;
 }