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 1 year has passed since last update.

【PHP】基本文法まとめ(※随時追加予定)

Posted at

PHPを学習している中で出てきた基本文法をまとめていきたいと思います。

基本形

  • PHPを使うときは、<?php ... ?>でくくる。
  • 文末に必ずセミコロンをつける。
<?php
  echo 'HelloWorld!';
?>

変数の四則演算

  • 省略形の一覧

まずは検索機能のコントローラーを作成します。
同時にコントローラーアクションも作成します。

// 変数xに1を代入
$x = 1;

// 四則演算の省略形
$x += 10;
$x -= 10;
$x *= 10;
$X /= 10;
$x %= 10;

// 値が1のときだけの省略形
$x ++;
$x --;

文字列の連結

  • 文字列の連結は、ドット「.」を使う
  • 「.=」で省略して書ける
$name = '佐藤';

echo '私の名前は'.$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?