Texy\HtmlElement::href PHP 메소드

href() 최종 공개 메소드

Special setter for element's attribute.
final public href ( $path, $query = NULL ) : self
리턴 self
    public final function href($path, $query = NULL)
    {
        if ($query) {
            $query = http_build_query($query, NULL, '&');
            if ($query !== '') {
                $path .= '?' . $query;
            }
        }
        $this->attrs['href'] = $path;
        return $this;
    }