input text 따옴표 처리
컨텐츠 정보
- 2,001 조회
- 0 추천
- 목록
본문
<input type="text" value="<?php echo htmlentities($myValue); ?>">
htmlspecialchars($myValue, ENT_QUOTES, 'UTF-8');
'&' (ampersand) becomes '&'
'"' (double quote) becomes '"' when ENT_NOQUOTES is not set.
''' (single quote) becomes ''' only when ENT_QUOTES is set.
'<' (less than) becomes '<'
'>' (greater than) becomes '>'
htmlspecialchars 는 예약된 HTML 문자만 인코딩하는 반면 htmlentities 는 HTML 표현이 있는 모든 것을 변환합니다
관련자료
댓글 0
등록된 댓글이 없습니다.