サーバーに 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")?