- func_get_args()
1 PHP[ | ]
PHP func_get_args() 문서를 참고하십시오.
PHP
Copy
function foo() {
$args = func_get_args();
print_r( $args );
}
foo('hello', 'world', 3);
# Array
# (
# [0] => hello
# [1] => world
# [2] => 3
# )
2 Ruby[ | ]
Ruby
Copy
def foo(*args)
puts args
end
foo('hello', 'world', 3)
# hello
# world
# 3
3 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.