"PHP urlencode()"의 두 판 사이의 차이

(새 문서: ==개요== ;PHP urlencode() <source lang='PHP'> echo urlencode('개요'); # %EA%B0%9C%EC%9A%94 echo urlencode('hello 123 http://zetawiki.com 한글'); # hello+123+http%3A%2F%2Fzetawik...)
 
 
(사용자 2명의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;PHP urlencode()
;PHP urlencode()
<source lang='PHP'>
<syntaxhighlight lang='PHP' run>
echo urlencode('개요');
echo urlencode('개요'); # %EA%B0%9C%EC%9A%94
# %EA%B0%9C%EC%9A%94
</syntaxhighlight>
echo urlencode('hello 123 http://zetawiki.com 한글');
<syntaxhighlight lang='PHP' run>
# hello+123+http%3A%2F%2Fzetawiki.com+%ED%95%9C%EA%B8%80
echo urlencode('hello 123 http://zetawiki.com 한글'); # hello+123+http%3A%2F%2Fzetawiki.com+%ED%95%9C%EA%B8%80
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[PHP urldecode()]]
* [[PHP urldecode()]] - URL-인코딩된 문자열을 디코딩
* [[PHP htmlentities()]] - 적용가능한 문자들을 HTML 엔티티로 변환
* [[PHP rawurlencode()]] - RFC 3986에 따른 URL 인코딩
* [[PHP rawurldecode()]] - URL-인코딩된 문자열을 디코딩
* [[함수 urlencode()]]


==참고==
==참고==
*  RFC 3986
* https://www.php.net/manual/en/function.urlencode.php
* https://www.php.net/manual/en/function.urlencode.php


[[category: PHP]]
[[category: PHP]]

2021년 4월 14일 (수) 15:45 기준 최신판

1 개요[ | ]

PHP urlencode()
PHP
Copy
echo urlencode('개요'); # %EA%B0%9C%EC%9A%94
Loading
PHP
Copy
echo urlencode('hello 123 http://zetawiki.com 한글'); # hello+123+http%3A%2F%2Fzetawiki.com+%ED%95%9C%EA%B8%80
Loading

2 같이 보기[ | ]

3 참고[ | ]