echo() 関数は 1 つ以上の文字列を出力します。
注 - echo() 関数は print() 関数よりも高速です。
#Syntaxecho(str)
str -出力に送信する文字列
<?php echo "Welcome!"; ?>
Welcome!
<?php $str1 = "Welcome!"; $str2 = "This is our website!"; echo $str1 . " " . $str2; ?>
Welcome! This is our website!
<?php echo "This demo text is on multiple lines."; ?>
This demo text is on multiple lines.
以上がPHPのecho()関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。