htmlentities (PHP 4, PHP 5, PHP 7)htmlentities — 해당하는 모든 문자를 HTML 엔티티로 변환 설명 string htmlentities ( string $string [, int $quote_style [, string $charset [, bool $double_encode ]]] )htmlentities()는 HTML 문자 엔티티에 존재하는 모든 문자를 엔티티로 변환하는 점을 제외하면, htmlspecialchars()와 완전히 동일합니다. 디코드(역변환)하려면 html_entity_decode()를 사용할 수 있습니다. 인수 string입력 문자열. quote_stylehtmlspecialchars()와 같게, 두번째에 위치하는 선택적인 quote_style 인..