Created
November 19, 2015 10:03
-
-
Save oliwa/974f931f9774883b547d to your computer and use it in GitHub Desktop.
Environment Conditional
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Environment --> | |
| <?php if ($_SERVER['SERVER_ADDR']=="192.168.100.10"){ ?> | |
| <!-- local, do something... --> | |
| <?php } else { ?> | |
| <!-- online, do something else... --> | |
| <?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment