PHP - Output and String Handling
What will be the output of this PHP code?
print echo "Hello";
print echo "Hello";
print is a function-like construct that expects one argument; echo is a language construct and cannot be used as an argument.print echo "Hello"; is invalid syntax and causes a parse error.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions