Created
December 1, 2019 05:52
-
-
Save mugyu/8e8ff837a353fd682e6a659099a6fe46 to your computer and use it in GitHub Desktop.
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
<?php | |
function define_php_versions() | |
{ | |
$version = explode('.', PHP_VERSION); | |
define('PHP_VERSION_MAJOR', (int)$version[0]); | |
define('PHP_VERSION_MINOR', (int)$version[1]); | |
define('PHP_VERSION_RELEASE', (int)$version[2]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment