PHPでprintを使って文字を出力する方法の記録です。
Windows Server 2016
PHP 7.4.12
IIS 10
ローカルネットワークです。
< スポンサーリンク >
「aiueo」という文字を出力します。
<?php
print “aiueo”;
変数「$a」に「aiueo」を代入し、変数の値を出力します。
<?php
$a = ‘aiueo’;
print $a;
変数「$a」と文字列を出力します。
「”」でくくると変数の値も出力できます。
<?php
$a = ‘aiueo’;
print “$a です”;
変数「$a」をそのまま出力します。
「’」でくくると変数のまま出力できます。
<?php
$a = ‘aiueo’;
print ‘$a です’;
配列を出力します。
<?php
$b = array(“val” => “aiu”);
print “配列の値は {$b[‘val’]} です”;
<?php
print <<<END
あいうえお<br>
かきくけこ<br>
さしすせそ
END;
こんな記事も書いています