html_entity_decode() 함수
3876 단어 decode
html_entity_decode() 함수
정의 및 사용법
The html_entity_decode() function converts HTML entities to characters.html_entity_decode() 함수의 역할은 HTML 문자를 문자로 인코딩하는 것입니다.
The html_entity_decode() function is the opposite of htmlentities()html_entity_decode () 함수의 작용은 htmlentities () 와 상반된다.
Syntax 구문
html_entity_decode(string,quotestyle,character-set)
Parameter 매개변수
설명 설명
string
Required. Specifies the string to decode 필수 매개 변수입니다.디코딩할 문자열 객체 지정
quotestyle
Optional. Specifies how to decode single and double quotes.선택 가능한 매개변수입니다.큰따옴표와 큰따옴표를 인코딩하는 방법을 정의합니다.기본값은 ENT_COMPAT. 사용 가능한 견적 스타일은 다음과 같습니다. 가능한 값:
character-set
Optional. A string that specifies which character-set to use.선택 가능한 매개변수입니다.어떤 문자열을 사용하여 Allowed values are를 설정할지 지정합니다. 사용 가능한 값은 다음과 같습니다.
Tips and Notes 주의사항
Note: Unrecognized character-sets will be ignored and replaced by ISO-8859-1.주의: 식별할 수 없는 글꼴 설정 [character-sets]는 무시되고 ISO-8859-1로 대체됩니다.
예 1 사례 1
<?php $str = "Jane & 'Tarzan'"; echo html_entity_decode($str); echo "<br />"; echo html_entity_decode($str, ENT_QUOTES); echo "<br />"; echo html_entity_decode($str, ENT_NOQUOTES); ?>
The browser output of the code above will be: 상기 코드는 다음 결과를 출력합니다.
Jane & 'Tarzan' Jane & 'Tarzan' Jane & 'Tarzan'
"View source"in the browser window, you will see the following HTML: 브라우저에서 "원본 파일 보기"를 선택하면 다음 HTML 데이터 흐름을 볼 수 있습니다.
<html> <body> Jane & 'Tarzan'<br /> Jane & 'Tarzan'<br /> Jane & 'Tarzan' </body> </html>
예제 2 사례 2
<html> <body> <?php $str = "My name is Øyvind Åsane. I'm Norwegian"; echo html_entity_decode($str, ENT_QUOTES, "ISO-8859-1"); ?> </body> </html>
The browser output of the code above will be: 상기 코드는 다음 결과를 출력합니다.
My name is Øyvind Åsane. I'm Norwegian
"View source"in the browser window, you will see the following HTML: 브라우저에서 "원본 파일 보기"를 선택하면 다음 HTML 데이터 흐름을 볼 수 있습니다.
<html> <body> My name is Øyvind Åsane. I'm Norwegian </body> </html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
de:code 2018 [AI16] 기계 학습에 기초한 음향 해석이나 화상 인식에 의한 산업 응용에 참가해 왔으므로 그 결과를 정리하고 있습니다. 내용의 실수, 오자 탈자 등은 양해 바랍니다. 정확한 점은, 본가의 사이트를 참조해 주시면 좋겠습니다. de:code 2018 [AI16] 기계 학습에 기초한 음향 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.