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.

includeとrequireの違い

Posted at

1つのファイルに共通するコードを書いておき、個別のファイルからそのファイルを読み込んでプログラムを効率的に作成する方法です。

includeとrequire

書き方は、下記のような書き方です。
これはどちらも変わりません。

include 'ファイル名';

include

指定されたファイルが読み込めない場合でも処理を継続します。

require

指定されたファイルが読み込めない場合は処理中止。

include_once

すでに同じファイルが読み込まれている場合はincludeを実行しない。

require_once

すでに同じファイルが読み込まれている場合はrequireを実行しない。

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?