up vote 5 down vote favorite
1
share [g+] share [fb]

I have a function called init on my website in an external file called functions.php. Index.php loads that page and calls function init:

function init(){
   error_reporting(0);
   $time_start = microtime(true);
   $con = mysql_connect("localhost","user123","password123");
   mysql_select_db("db123");
}

How can I get all of these variables global(if possible) without having to use

global $time_start;
global $con;
link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

If you want to specifically use globals, take a look at $GLOBALS array. Even though there are couple of other ways, Pass by reference, Data Registry Object recommended, etc.

More on variable scopes.

link|improve this answer
feedback

You don't want it global.

On alternative is to encapsulate it in a object or even use a DI in order to configure it.

link|improve this answer
feedback

Maybe you can return these variables from your init() function :

function init(){
   error_reporting(0);
   $time_start = microtime(true);
   $con = mysql_connect("localhost","user123","password123");
   mysql_select_db("db123");

   return array('time_start' => $time_start, 'con' => $con);
}
link|improve this answer
Thanks! If nobody posts a better answer Ill accept. – nebkat Jun 9 '10 at 15:53
feedback

You can declare them in the global scope, then pass them to the function by reference. After modifying the function to do so.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.