php print

PHPでprintを使って文字を出力する方法の記録です。

Windows Server 2016
PHP 7.4.12
IIS 10
ローカルネットワークです。

< スポンサーリンク >





「aiueo」という文字を出力します。

<?php
print “aiueo”;

php print
php print

 

変数「$a」に「aiueo」を代入し、変数の値を出力します。

<?php
$a = ‘aiueo’;
print $a;

php print
php print

 

変数「$a」と文字列を出力します。
「”」でくくると変数の値も出力できます。

<?php
$a = ‘aiueo’;
print “$a です”;

php print
php print

 

変数「$a」をそのまま出力します。
「’」でくくると変数のまま出力できます。

<?php
$a = ‘aiueo’;
print ‘$a です’;

php print
php print

 

配列を出力します。

<?php
$b = array(“val” => “aiu”);
print “配列の値は {$b[‘val’]} です”;

php print
php print

 

<?php
print <<<END
あいうえお<br>
かきくけこ<br>
さしすせそ
END;

php print
php print

< スポンサーリンク >※広告先のお問い合わせは広告主様にお願いします