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

WADA Masashi php-users@php.gr.jp
Thu, 14 Nov 2002 13:04:29 +0900


 和田です。

Youichi Iwakiri wrote:
>下記のスクリプトを試せば分かるかも
>
>-- 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>

 test.inc を次のように変更してから再び試すと、include_once の必
要性について、さらに理解が深まるでしょう。たぶん。

-- test.inc
<?php
    function test() {
        return;
    }
?>

----
和田雅志 (WADA Masashi)
wada@hh.iij4u.or.jp