쿼리스트링 배열 넘기기

쿼리스트링 배열 넘기기

1 예시[ | ]

  • GET방식 URL 호출
http://example.com/show_get.php?strs[]=hello&strs[]=world
  • 받는 PHP 예시
<?php
echo "<xmp>";
print_r($_GET);
echo "</xmp>";
# Array
# (
#     [strs] => Array
#         (
#             [0] => hello
#             [1] => world
#         )
# )

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}