test.inc:
<?php 
    
function foo () {
        echo 
"bar\n";
    }
    echo 
"inc\n";
?>


test.php:
<?php  
    
echo "foo\n";
    include 
"test.inc";
    
foo();
    echo 
"more bar\n";
? >