value = Helper::htmlEntityEncode($this->value); // 数组 if ($this->value !== null && ! is_scalar($this->value)) { $value = Helper::array($this->value); if (count($value) <= $limit) { return $value; } $value = array_slice($value, 0, $limit); array_push($value, $end); return $value; } // 字符串 $this->addScript(); $value = Helper::strLimit($this->value, $limit, $end); if ($value == $this->value) { return $value; } return << {$value}   
{$this->value}   
HTML; } }