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 変数を文字列中で展開する

Last updated at Posted at 2019-12-29

目的

  • 変数に格納された内容を文字列中で展開して表示する方法をまとめる

書き方の例

  • 下記に変数Aに格納された内容を文字列中で展開して表示する処理を記載する。
echo "任意の文字列{$変数A}任意の文字列";

より具体的な書き方の例

  • 下記に変数nameに格納された内容を文字列中で展開して表示する処理を記載する。
//変数に内容の格納
$name = "みりを";

echo "おはようございます{$name}さん";
0
0
0

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?