PHP - 他のPHPファイルの読み込み

公開日:2020-12-22 更新日:2020-12-22
[PHP]

1. 概要

実行中のPHPファイルに、他のPHPファイルを挿入するには、include または require を使います。
include と require の違いは、ファイルが読み込めなかった場合の動作です。
include は、ファイルが読み込めなくても処理を続行しますが、
require は、ファイルの読み込みに失敗した時点でエラーとなり、処理が終了します。
正常に読み込んだファイルの中でエラーが発生した場合は、どちらも処理が終了します。

また、後ろに _once を付けると、何度実行しても、1度だけ挿入されます。
ライブラリなどを読み込む際には、require_once() を使うと良いと思います。
include      'パス';
include_once 'パス';
require      'パス';
require_once 'パス';

2. 使用例

test.php に、test2.php を3回挿入しています。

test.php
<?php
    print("test\n");
    include 'test2.php';
    include 'test2.php';
    include 'test2.php';
    print("test\n");
test2.php
<?php
    print("test2\n");
実行結果
test
test2
test2
test2
test

include() を include_once() にすると、test2.php は1度だけ読み込まれるため、次のような実行結果となります。
実行結果
test
test2
test