PHP - Output and String Handling
Which output function in PHP returns 1 and also prints it?
echo outputs text but does not return a value. print outputs text and returns 1, so it can be used in expressions.var_dump outputs variable info but returns void. printf outputs formatted text and returns the length of output.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions