正文085-PHP文件引用include(二)IP云V管理员/2022-12-02/1 阅读 12/02提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 01.php <?php function foo() { global $color; include '02.php'; echo "A $color $fruit"; } foo(); // A green apple echo "A $color $fruit"; // A green ?> 02.php <?php $color = 'green'; $fruit = 'apple'; ?>