Html::link()
Generates an a
tag with an absolute Url
Html::link(string|null $href = null, string|array|null $text = null, array $attr = [ ]): string
Parameters
Name | Type | Default | Description |
---|---|---|---|
$href | string ornull |
null
|
Relative or absolute Url |
$text | string orarray ornull |
null
|
If null , the link will be used as link text. If an array is passed, each element will be added unencoded |
$attr | array |
[ ]
|
Additional attributes for the a tag. |
Return type
string