Str::unhtml()
Removes all html tags and encoded chars from a string
Str::unhtml(string|null $string): string
Parameters
Name | Type | Default |
---|---|---|
$string | string ornull |
no default value |
Return type
string
Parent class
Examples
echo str::unhtml('some <em>crazy</em> stuff');
// output: some uber crazy stuff