Creates an alert bar.
alert( string $title [, array $options ] ) : string
$title (string) (Required) Text inside the alert.
$options (array) (Optional) Default value: []
Name | Type | Default | Description |
---|---|---|---|
class | string | alert-danger | CSS class. |
dismiss | bool | false | Enable dismissal of an alert. |
(string)
echo alert('This is a danger alert!');
// <div class='alert alert-danger'>This is a danger alert!</div>