Skip to content

Kirby 5.0.4

Str::unhtml()

Removes all html tags and encoded chars from a string

Str::unhtml(string|null $string): string

Parameters

Name Type Default
$string stringornull no default value

Return type

string

Parent class

Kirby\Toolkit\Str

Examples

echo str::unhtml('some <em>crazy</em> stuff');
// output: some uber crazy stuff