[PHP-users 11481] Re: include_onceについて

Youichi Iwakiri php-users@php.gr.jp
Thu, 14 Nov 2002 12:51:24 +0900


いわきりです

S.Okazaki wrote in <20021114122950.D219.OKAZAKI@jp-hb.com> :
>includeとinclude_onceの違いがよく分かりません。
>「既に読み込まれている場合」とは具体的にどういう意味なのでしょうか?

下記のスクリプトを試せば分かるかも

-- test1.php
<script language="php">
$x = 0;
include_once("test.inc");
include_once("test.inc");
</script>

-- test2.php
<script language="php">
$x = 0;
include("test.inc");
include("test.inc");
</script>

-- test.inc
<script language="php">
$x = $x + 1;
echo $x."\n";
</script>

-- 
Youichi Iwakiri