085-PHP文件引用include(二)

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';

?>

 

posted @ 2019-06-10 20:25  像一棵海草海草海草  阅读(93)  评论(0编辑  收藏  举报