• PHP Video Tutorials

PHP - Function echo



Syntax

void echo ( string $arg1 [, string $... ] )

Definition and Usage

It is give the output as one or more string

Return Values

It returns no valued

Parameters

Sr.No Parameters & Description
1

arg1

The parameter to output

Example

Try out the following example

<?php
   echo "tutorialspoint";
?>

This will produce following result −

tutorialpoint
php_function_reference.htm
Advertisements