Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 436 Bytes

0097.md

File metadata and controls

31 lines (24 loc) · 436 Bytes

Which of the following statements will return the second parameter passed to a function?

  • A)
func_get_arg(1);
  • B)
func_get_args(2);
  • C)
func_num_args(2);
  • D)
func_num_args(1);
Answer

Answer: A