<?php
/*
 *
 */

function foo() {
    // when a file is included, the code it contains inherits the variable scope of the line on which the include occurs
    include 'global_vars.php';
    echo $color;
}

// prints green
foo();

// undefined
echo $color;