LoginSignup
0
0

More than 1 year has passed since last update.

PHPで数値の計算方法★

Last updated at Posted at 2021-11-11

PHPで四則演算のやり方を見ていきましょう!

+ (足し算)
- (引き算)
* (掛け算)
/ (割り算)
% (割った時の余り)

index.php

echo 20 + 1 . PHP_EOL;
echo 20 - 1 . PHP_EOL;
echo 10 * 2 . PHP_EOL;
echo 30 / 3 . PHP_EOL;
echo 40 % 3 . PHP_EOL;

ターミナルで以下を実行します!

~$ php index.php

ターミナルに以下が出力されました!

~ $ php index.php
21
19
20
10
1
~ $ 

文字列の時は''(シングルクオーテーション)や、

""(ダブルクオーテーション)で囲みましたが、数値の場合囲まなくてokです!

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