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 5 years have passed since last update.

オリジナルアプリ制作中に振り返った基礎的な学習内容

0
Posted at

背景

基礎的なPHPの学習を終えオリジナルアプリの制作に入ったが、つまづくことが多々ある。
ここに振り返った学習内容をまとめていくことにした。


関数
何度も利用する処理を定義しておく。次からは呼び出すだけで実行できる。
戻ってくる値を戻り値、返り値と呼ぶ。

引数
mt_rand(1,100)
このように関数に渡す値を引数(パラメータ)と呼ぶ。
この場合、乱数を生成する際の最小値と最大値を引数として与えている。

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?