0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PHPの基本個所についての復習①(echo)

Posted at

#はじめに
PHPの基本についてアウトプットします。
#実行
書き方は色々あると思いますが、次のコードをhtml内に書きます。

<? php 処理内容; ?>

今回はRubyのputsに当たるechoについて書きます。

Hello PHP!と出力するには、次のように書きます。

<? php echo 'Hello PHP!'; ?>

処理の最後に;を忘れないのがポイントです。

変数を使う時は、最初に$を付けます。


<? php $word = "Hello PHP!"; echo $word; ?>

このままだと読みにくいので、改行します。


<? php 
  $word = 'Hello PHP!';
  echo $word;
?>

これで、PHPを使った文字の出力が出来るようになりました。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?