Skip to content

Instantly share code, notes, and snippets.

@mugyu
Created December 1, 2019 05:52
Show Gist options
  • Save mugyu/8e8ff837a353fd682e6a659099a6fe46 to your computer and use it in GitHub Desktop.
Save mugyu/8e8ff837a353fd682e6a659099a6fe46 to your computer and use it in GitHub Desktop.
<?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