目次

02 print()

引数の文字列を出力します。括弧()は省略できる

書式

print “文字列、または変数”;

 <?PHP
 $str="こんにちわ。";
 print $str;
 ?>