PHP - Output and String Handling
What will be the output of the following PHP code?
print 123;
print " apples";
print 123;
print " apples";
print 123; prints the number 123 without quotes.print " apples"; prints the text ' apples' with a space before apples.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions