Q. What will be the output?
Code:$a = 'Hello World'; echo substr($a, 6);
β
Correct Answer: (B)
World
Explanation: Substring starting from index 6.
$a = 'Hello World'; echo substr($a, 6);