PHP - Output and String Handling
What will be the output of the following PHP code?
$arr = [1, 2, 3];
print_r($arr);
$arr = [1, 2, 3];
print_r($arr);
print_r prints human-readable information about arrays, showing keys and values.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions