Which of the following is used in PHP to output one or more strings?

  • echo
  • print
  • printf
  • display
In PHP, the echo statement is used to output one or more strings. It can be used to display strings directly or concatenate multiple strings together. The echo statement is often used for simple outputting purposes in PHP. Learn more: https://www.php.net/manual/en/function.echo.php
Add your answer
Loading...

Leave a comment

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