基本

echo

echoは文字列を出力するときに使います。

書式

echo(出力する値)

使用例

<?php

$test = "てすてす";

echo $test;

?>

出力結果

てすてす