How to setup site-wide variables in php? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T21:47:43Zhttp://stackoverflow.com/feeds/question/13000http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php1How to setup site-wide variables in php?svec2008-08-16T05:05:09Z2008-09-10T09:13:12Z
<p>I want to define something like this in php:</p>
<pre><code>$EL = "\n<br />\n";
</code></pre>
<p>and then use that variable as an "endline" marker all over my site, like this:</p>
<pre><code>echo "Blah blah blah{$EL}";
</code></pre>
<p>How do I define $EL once (in only 1 file), include it on every page on my site, and <em>not</em> have to reference it using the (strangely backwards) "global $EL;" statement in every page/function?</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13003#130035Answer by jeremy Ruten for How to setup site-wide variables in php?jeremy Ruten2008-08-16T05:23:09Z2008-08-16T05:31:55Z<p>Most PHP sites should have a file (I call it a header) that you include on every single page of the site. If you put that first line of code in the header file, then include it like this on every page:</p>
<pre><code> include 'header.php';
</code></pre>
<p>you won't have to use the global keyword or anything, the second line of code you wrote should work.</p>
<p>Edit: Oh sorry, that won't work inside functions... now I see your problem.</p>
<p>Edit #2: Ok, take my original advice with the header, but use a <a href="http://php.net/define" rel="nofollow" title="Dr. Explain">define()</a> rather than a variable. Those work inside functions after being included.</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13005#13005-1Answer by cringe for How to setup site-wide variables in php?cringe2008-08-16T05:27:22Z2008-08-16T05:30:43Z<p>IIRC a common solution is a plain file that contains your declarations, that you include in every source file, something like '<em>constants.inc.php</em>'. There you can define a bunch of application-wide variables that are then imported in every file.</p>
<p>Still, you have to provide the include directive in <strong>every</strong> single source file you use. I even saw some projects using this technique to provide localizations for several languages. I'd prefer the gettext way, but maybe this variant is easier to work with for the average user.</p>
<p><strong>edit</strong> For your problem I recomment the use of <strong>$GLOBALS[]</strong>, see <a href="http://php.net/manual/en/language.variables.scope.php" rel="nofollow" title="Dr. Explain">Example #2</a> for details.</p>
<p>If that's still not applicable, I'd try to digg down PHP5 objects and create a static Singleton that provides needed static constants (<a href="http://www.developer.com/lang/php/article.php/3345121" rel="nofollow"><a href="http://www.developer.com/lang/php/article.php/3345121" rel="nofollow">http://www.developer.com/lang/php/article.php/3345121</a></a>)</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13008#13008-1Answer by Unkwntech for How to setup site-wide variables in php?Unkwntech2008-08-16T05:34:03Z2008-08-16T05:34:03Z<p>Sessions are going to be your best bet, if the data is user specific, else just use a conifg file.
config.php:</p>
<pre><code><?php
$EL = "\n<br />\n";
?>
</code></pre>
<p>Then on each page add</p>
<pre><code>require 'config.php'
</code></pre>
<p>the you will be able to access $EL on that page.</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13014#130140Answer by svec for How to setup site-wide variables in php?svec2008-08-16T05:39:42Z2008-08-16T05:39:42Z<p>@Unkwntech:</p>
<p>As @Jeremy pointed out, that <em>require</em> solution won't work inside functions.</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13030#13030-2Answer by Kevin for How to setup site-wide variables in php?Kevin2008-08-16T06:58:31Z2008-12-25T01:06:10Z<p>Yes, because {$EL} is much less verbose than <br/></p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13058#130582Answer by TT for How to setup site-wide variables in php?TT2008-08-16T08:44:31Z2008-08-16T08:44:31Z<p>Sounds like the job of a constant. See the function <a href="http://us2.php.net/define" rel="nofollow">define()</a>.</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13075#130750Answer by Unkwntech for How to setup site-wide variables in php?Unkwntech2008-08-16T09:26:18Z2008-08-16T09:30:05Z<p>@svec yes this will, you just have to include the file inside the function also. This is how most of my software works.</p>
<pre><code>function myFunc()
{
require 'config.php';
//Variables from config are available now.
}
</code></pre>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/13094#130941Answer by Brian Warshaw for How to setup site-wide variables in php?Brian Warshaw2008-08-16T11:21:08Z2008-08-16T11:21:08Z<p>Are you using PHP5? If you define the __autoload() function and use a class with some constants, you can call them where you need them. The only aggravating thing about this is that you have to type something a little longer, like </p>
<pre><code>MyClass::MY_CONST
</code></pre>
<p>The benefit is that if you ever decide to change the way that you handle new lines, you only have to change it in one place.</p>
<p>Of course, a possible negative is that you're calling including an extra function (__autoload()), running that function (when you reference the class), which then loads another file (your class file). That might be more overhead than it's worth.</p>
<p>If I may offer a suggestion, it would be avoiding this sort of echoing that requires echoing tags (like <code><br /></code>). If you could set up something a little more template-esque, you could handle the nl's without having to explicitly type them. So instead of</p>
<pre><code>echo "Blah Blah Blah\n<br />\n";
</code></pre>
<p>try:</p>
<pre><code><?php
if($condition) {
?>
<p>Blah blah blah
<br />
</p>
<?php
}
?>
</code></pre>
<p>It just seems to me like calling up classes or including variables within functions as well as out is a lot of work that doesn't need to be done, and, if at all possible, those sorts of situations are best avoided.</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/53094#530940Answer by Darryl Hein for How to setup site-wide variables in php?Darryl Hein2008-09-09T22:59:23Z2008-09-09T22:59:23Z<p>Another option is to use an object with public static properties. I used to use $GLOBALS but most editors don't auto complete $GLOBALS. Also, un-instantiated classes are available everywhere (because you can instatiate everywhere without telling PHP you are going to use the class). Example:</p>
<pre><code><?php
class SITE {
public static $el;
}
SITE::$el = "\n<br />\n";
function Test() {
echo SITE::$el;
}
Test();
?>
</code></pre>
<p>This will output <code><br /></code></p>
<p>This is also easier to deal with than costants as you can put any type of value within the property (array, string, int, etc) whereas constants cannot contain arrays.</p>
<p>This was suggested to my by a user on the <a href="http://forum.nusphere.com" rel="nofollow">PhpEd forums</a>.</p>
http://stackoverflow.com/questions/13000/how-to-setup-site-wide-variables-in-php/53672#536720Answer by Michał Słaby for How to setup site-wide variables in php?Michał Słaby2008-09-10T09:13:12Z2008-09-10T09:13:12Z<p>svec, use a PHP framework. Just any - there's plenty of them out there.
This is the right way to do it. With framework you have single entry
point for your application, so defining site-wide variables is easy and
natural. Also you don't need to care about including header files nor
checking if user is logged in on every page - decent framework will do
it for you.</p>
<p>See:</p>
<ul>
<li><a href="http://framework.zend.com/" rel="nofollow">Zend framework</a></li>
<li><a href="http://cakephp.org/" rel="nofollow">CakePHP</a></li>
<li><a href="http://www.symfony-project.org/" rel="nofollow">Symfony</a></li>
<li><a href="http://kohanaphp.com/" rel="nofollow">Kohana</a></li>
</ul>
<p>Invest some time in learning one of them and it will pay back very soon.</p>