html::entities PHP 메소드

entities() 공개 정적인 메소드

public static entities ( $value )
    public static function entities($value)
    {
        return htmlentities($value, ENT_QUOTES, static::encoding(), false);
    }

Usage Example

예제 #1
0
 /**
  * Returns a translation table of xml entities to html entities
  *
  * @return array
  */
 public static function entities()
 {
     return array_flip(html::entities());
 }