2

so my domain name is going to change from building it on my computer (localhost) to what my domain name will be when i actually deploy it, and I don't want to go back and have to change it in a million places. Now i know I could do a superglobal variable in php

<?php echo $GLOBALS['domain_name']; ?>

but as far as I know you can't use this in separate .js files. How can I create a "global variable" for my domain name that can be used in html and js?

user2864740
  • 60,010
  • 15
  • 145
  • 220
Geore Shg
  • 1,299
  • 5
  • 23
  • 38
  • 1
    As a note, you can create a header file where you declare all your default (PHP) load stuff first, including your domain name. This will help you avoid globals, and it's nicer to have all of that same old functionality seperated. – Bono Aug 11 '15 at 05:32
  • 1
    Why aren't you using relative links within your pages? Then it doesn't matter where the files are actually located. –  Aug 11 '15 at 05:34
  • 1
    Is it to be a PHP global or a JavaScript global? (HTML has no variables.) – user2864740 Aug 11 '15 at 05:36
  • 1
    @jeff: Sometimes relative links are not an option. For example, if you have a layout template that is processed in both `/` and `/foo/bar` URLs, and it contains stylesheet/JS/font/image references, there is no way to do it without absolute links (or counting where your caller code is right now, which is even messier than just knowing your base URL). – Amadan Aug 11 '15 at 05:40

4 Answers4

2

You can inject any PHP value into clientside.

<script>
  var baseURL = <?php echo json_encode($baseURL); ?>;
</script>

Use json_encode because this gives foolproof safe way of delivering data in the format JS understands, and works on real arrays, PHP "arrays", numbers, strings, whatever you want.

Amadan
  • 191,408
  • 23
  • 240
  • 301
  • sure but i want to do it in a separate .js file... does that work? – Geore Shg Aug 11 '15 at 05:35
  • In theory, it can, if you execute the JS file using PHP. But you shouldn't. The idea is that in your webpage header you inject the constants all of your JS code will need; your code can remain in the separate JS file. The variable being global (i.e. defined on `window`), means that you can access it from wherever - including from other JS files. – Amadan Aug 11 '15 at 05:36
2

Print in head of index file (or in php include in header tags)

Any js file can use variables defined in same scope level above it, even if in other files.

http://www.w3schools.com/js/js_scope.asp

Common form is to, inside the tag and at before any other calls, to define all 'global' js variables.

Printing php into a js file is discouraged highly for a few reasons, even though i have heard its possible, but just use a php include if you need it in multiple places:

<html>
<?php
  // include any shared content, in this case i include entire <head> section
  include('header.php');
?>
<body>

So if you have something like this at top of your php index file, or in an include you place there:

<script>
  var baseUrl = "<?php echo $GLOBALS['domain_name']; ?>";
</script>

Then that can be used as a standard variable anywhere after that point.


Side Note: using object wrapper

As a side note, you could wrap it in an object and pass that object through to other files, such as:

var AppData = {};
AppData.domain_name = "<?php echo $GLOBALS['domain_name']; ?>";
AppData.googleTrackerUID = "<?php echo $GLOBALS['gtrackerid']; ?>";
AppData.whatever = true;

fnct_from_earlier_point_or_elsewhere(AppData);

Thats only really of use if you think you may need to pass any other settings through, or just want to build for that possibility (especially if optional param, as easy to make reusable function that handles if an index doesnt exist)

I prefer the object approach, but dont overcomplicate if not needed.


EDIT

As @Amadan commented, it would even be easier to create the $AppData array/object in php then just call this:

var AppData = <?php echo json_encode($AppData); ?>;

Also, regarding someone posting to omit the 'var' keyword, its usually bad form as var doesnt stop it being global, and some issues with certain browsers (IE)

javascript var or not var, what's the difference?

Community
  • 1
  • 1
Daniel Brose
  • 1,394
  • 10
  • 24
  • 1
    As I stated, the object approach is extremely nice and extremely simple if you just write `AppData = `; this way, it's less code, you don't care about data types, and it won't break your code if one of your settings happens to contain a double quote. – Amadan Aug 11 '15 at 05:42
1

try this:

<script>    
window.yourGlobalVariable = ....
</script>

by using you window it will be available for all your site

see: Define global variable in a JavaScript function

Community
  • 1
  • 1
Dkova
  • 1,087
  • 4
  • 16
  • 28
0

you can have a file like const.php

 define('ROOT','http://127.0.0.1/');

and than use everywhere so will only need to change value of ROOT

NullPoiиteя
  • 56,591
  • 22
  • 125
  • 143