update : 2015.11.03
php.shukuma.com검색:
|
htmlentities(PHP 4, PHP 5) htmlentities — 해당하는 모든 문자를 HTML 엔티티로 변환 설명
string htmlentities
( string
$string
[, int $quote_style
[, string $charset
[, bool $double_encode
]]] )htmlentities()는 HTML 문자 엔티티에 존재하는 모든 문자를 엔티티로 변환하는 점을 제외하면, htmlspecialchars()와 완전히 동일합니다. 디코드(역변환)하려면 html_entity_decode()를 사용할 수 있습니다. 인수
반환값인코드한 문자열을 반환합니다. 변경점
예제
Example #1 htmlentities() 예제
<?php 참고
|