サーバーに 3 つのファイルがあります。
foo.php
assets/bar.php
assets/qux.php
foo.php
を含むbar.php
、およびbar.php
含むqux.php
。のコードをfoo.php
以下に示します。
<?php
include_once("assets/bar.php");
?>
どのようbar.php
に含める必要がありますqux.php
か? またはを使用する必要がありますinclude("qux.php")
かinclude("assets/qux.php")
?