Server Side/PHP
[PHP] echo (String Function)
DevES
2015. 7. 31. 07:25
echo - Output one or more strings
void echo ( string $arg1
[ , string $...
] )
Outputs all parameters
Frankly, this is not a function, so you aren't required to use parentheses with it.
Example.
<?php
echo "Hello World.";
?>
* result:
Hello World.