decode() public method

Convert entities to HTML characters.
public decode ( string $value ) : string
$value string
return string
Example #1
0
 /**
  * Convert entities to HTML characters.
  *
  * @param string $value
  * @return string 
  * @static 
  */
 public static function decode($value)
 {
     return \Collective\Html\HtmlBuilder::decode($value);
 }