htmlentities - 적용 가능한 모든 문자를 HTML 엔티티로 변환합니다.

· 2017-04-04 (화) 12:35:38 · 2366

htmlentities - 적용 가능한 모든 문자를 HTML 엔티티로 변환합니다.

 

설명 ¶

 

string htmlentities ( string $string [, int $flags= ENT_COMPAT | ENT_HTML401 [, string $encoding= ini_get ( "default_charset") [, bool $double_encode= true ]]])

이 함수는 htmlentities () 를 제외하고 모든면에서 htmlspecialchars () 와 동일 합니다. HTML 문자 엔티티에 해당하는 모든 문자가이 엔티티로 변환됩니다.

 

대신 (역순) 디코딩하려면 html_entity_decode () 를 사용할 수 있습니다 .

 

<?php

$str = "A 'quote' is <b>bold</b>";

 

// Outputs: A 'quote' is <b>bold</b>

echo htmlentities($str);

 

// Outputs: A 'quote' is <b>bold</b>

echo htmlentities($str, ENT_QUOTES);

?>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 17-04-04 조회 2,367
PHP 17-04-04 조회 2,867
jQuery 17-04-03 조회 1,780
jQuery 17-04-03 조회 2,303
jQuery 17-04-03 조회 1,867
node.js 17-03-29 조회 3,894
jQuery 17-03-29 조회 2,182
jQuery 17-03-29 조회 2,143
jQuery 17-03-29 조회 2,042
jQuery 17-03-28 조회 2,097
jQuery 17-03-28 조회 2,483
PHP 17-03-28 조회 2,307
PHP 17-03-28 조회 1,914
PHP 17-03-28 조회 2,113
jQuery 17-03-27 조회 3,219
jQuery 17-03-27 조회 1,879
jQuery 17-03-27 조회 1,775
jQuery 17-03-26 조회 2,143
jQuery 17-03-26 조회 2,097
jQuery 17-03-26 조회 2,278
jQuery 17-03-23 조회 2,071
jQuery 17-03-23 조회 2,030
jQuery 17-03-23 조회 2,021
jQuery 17-03-22 조회 2,088
jQuery 17-03-22 조회 2,305
jQuery 17-03-22 조회 1,954
jQuery 17-03-20 조회 2,135
jQuery 17-03-20 조회 2,391
jQuery 17-03-20 조회 1,958
jQuery 17-03-18 조회 2,284