startTag() 공개 정적인 메소드

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