The print statement in PHP can output multiple parameters at once.

  • TRUE
  • FALSE
This statement is false. The print statement in PHP does not support multiple parameters. Unlike the echo statement, which can concatenate multiple strings or variables together, print only accepts one parameter at a time. If you attempt to provide multiple arguments to print, it will result in a parse error. Learn more: https://www.php.net/manual/en/function.print.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *