br([$count = 1])
Parameters: |
|
---|---|
Returns: |
HTML line break tag |
Return type: |
string |
Generates line break tags (<br />) based on the number you submit. Example:
1 | echo br(3); |
The above would produce:
1 | < br />< br />< br /> |
Note
This function is DEPRECATED. Use the native str_repeat()
in combination with <br />
instead.
Please login to continue.