PHPスクリプト/print() のバックアップ(No.1)


print()

引数の文字列を出力します。

書式

print "文字列、または変数";

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