index.phpファイルの
$nameにkanaを代入します!
. で文字列を結合し、PHP_EOLで改行します!
index.php
<?php
$name = 'kana';
echo '私の名前は' . $name . 'です' . PHP_EOL;
ターミナルに以下のコマンドを入力します。
~$php index.php
ターミナルにこのように出力されます!
~$ php index.php
私の名前はkanaです
~$
Go to list of users who liked
More than 1 year has passed since last update.
index.phpファイルの
$nameにkanaを代入します!
. で文字列を結合し、PHP_EOLで改行します!
<?php
$name = 'kana';
echo '私の名前は' . $name . 'です' . PHP_EOL;
ターミナルに以下のコマンドを入力します。
~$php index.php
ターミナルにこのように出力されます!
~$ php index.php
私の名前はkanaです
~$
Register as a new user and use Qiita more conveniently
Go to list of users who liked