Method: str::unxml
Removes all xml entities from a string
Info
Syntax
str::unxml($string)
Parameters
- $string (string)
Return (string)
Example
echo str::unxml('some <em>über</em> crazy stuff');
// output: some über crazy stuff
Removes all xml entities from a string
str::unxml($string)
echo str::unxml('some <em>über</em> crazy stuff');
// output: some über crazy stuff