Question:What would you replace ??????? with, below, to make the string Hello, World! be displayed?
<?php function myfunction() { ??????? print $string; } myfunction("Hello, World!"); ?>
A There is no way to do this
B $string = $argv[1];
C $string = $_ARGV[0];
D list($string) = func_get_args();
E $string = get_function_args()
+ AnswerD
+ Report