label = $label; $this->name = $name; } /** * 设置皮肤 * @param string $skin * @return $this */ public function setSkin(string $skin = '') { $this->skin = $skin; return $this; } /** * 获取html * @param array $data * @return mixed|string */ public function getHtml($data = []) { return <<{$this->getLabel()}
{$this->getForm($data)}
HTML; } /** * 获取label * @return string */ private function getLabel() { return Basics::indentAndLineFeed(5, Basics::BEFORE) . ""; } /** * 获取表单html文本 * @param $data * @return string */ private function getForm($data) { $html = Basics::indentAndLineFeed(6, Basics::BEFORE) ."' . Basics::indentAndLineFeed(5, Basics::BEFORE); } /** * 设置默认值 * @param $value * @return mixed */ public function setDefault($value) { $value and $this->default = $value; return $this; } }