PHP func_get_args()

Jmnote (토론 | 기여)님의 2024년 1월 27일 (토) 02:02 판 (→‎개요)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

PHP func_get_args()
function foo() {
	$args = func_get_args();
	print_r( $args );
}
foo('hello', 'world', 3);
# Array
# (
#     [0] => hello
#     [1] => world
#     [2] => 3
# )

2 같이 보기[ | ]

3 참고[ | ]

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