Update php7/8 detection code.

This commit is contained in:
James Cole
2021-03-23 06:23:30 +01:00
parent 7f48a1b6ee
commit ccaadd1f52
13 changed files with 119 additions and 106 deletions

View File

@@ -105,11 +105,18 @@ trait CreateStuff
protected function createOAuthKeys(): void // create stuff
{
// switch on PHP version.
if (7 === PHP_MAJOR_VERSION) {
$result = version_compare(phpversion(), '8.0');
Log::info(sprintf('PHP version is %s', $result));
if (-1 === $result) {
Log::info('Will run PHP7 code.');
// PHP 7
$rsa = new \phpseclib\Crypt\RSA;
$keys = $rsa->createKey(4096);
}
if (8 === PHP_MAJOR_VERSION) {
if ($result >= 0) {
Log::info('Will run PHP8 code.');
// PHP 8
$keys = \phpseclib3\Crypt\RSA::createKey(4096);
}