4
2

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.

PHP 初心者メモ①

Posted at

ドットインストールで学んだ用語。今までの知識と共に整理する。

①関数...にたような処理を纏めて登録しておく。関数名は自分で決められる
関数の作り方...function 関数名(引数=初期値){
纏めたい処理
}

関数()//関数呼び出し

②引数...関数の実行時にデータを指定することができる

③引数の初期値...引数が指定されなかった時の値。

④戻り値...returnを使う。使った時点で関数の処理を止めつつ呼び出し元に値を返す

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?