I want to initialise a variable which i need to use across my zend application. Where am i supposed to initialise it ? In index.php or in bootstrap.php ?
Bootstrap is the correct place. Bootstrap is used for web applications and CLI applications against index.php is only used when the app is used as a web app.