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