php에서 문자열을 html로 변환하는 방법: htmlentities() 함수를 사용하면 됩니다. 이 함수는 문자를 HTML 엔터티로 변환할 수 있습니다. 함수 구문: [htmlentities(string,quotestyle,character-set)].
htmlentities() 함수는 문자를 HTML 엔터티로 변환합니다.
(권장 자습서 : PHP 그래픽 자습서)
구문 :htmlentities(string,quotestyle,character-set)구현 코드 :
R
<html> <body> <?php $str = "John & 'Adams'"; echo htmlentities($str, ENT_COMPAT); echo "<br />"; echo htmlentities($str, ENT_QUOTES); echo "<br />"; echo htmlentities($str, ENT_NOQUOTES); ?> </body> </html>(비디오 자습서 권장 :
John & 'Adams' John & 'Adams' John & 'Adams'
<html> <body> John & 'Adams'<br /> John & 'Adams'<br /> John & 'Adams' </body> </html>vere the Browser View. 소스 코드를 입력하면 다음 HTML이 표시됩니다. rrreee
위 내용은 PHP에서 문자열을 HTML로 변환하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!