我有一个包含以下代码的文件 test.php
<?php
//name of this file is test.php
$foo = "some value";
include_once 'extras.php';
$bar = "another value";
echo "test.php: foo is $foo and bar is $bar <br />";
?>
另一个包含代码的文件
<?php
echo "extras.php: foo is $foo and bar is $bar <br />";
?>
输出表明来自 extras.php 的 echo 语句也包含在 test.php 中,而我作为新手假设 include_once 或 include 构造仅处理变量和函数而忽略其他内容。什么是正确的,请指导。谢谢