htmlDecode() 공개 정적인 메소드

It is the inverse of {@link htmlEncode}.
public static htmlDecode ( $s ) : string
리턴 string decoded string
예제 #1
0
 public function testHtmlDecode()
 {
     $html = THttpUtility::htmlDecode('<tag key="value">');
     self::assertEquals('<tag key="value">', $html);
 }