// my_controller.php
$variable = 5;
// end my_controller.php
// app.php
function startApplication()
{
include 'my_controller.php';
}
// end app.php
// index.php
include 'app.php';
startApplication();
// а теперь угадайте чему равна переменная $variable здесь?
// end index.php
Так поможет