18 lines
537 B
PHP
18 lines
537 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if (str_starts_with(PHP_VERSION, "8.1.")) {
|
||
|
|
return require_once __DIR__ . '/8.1/functionsList.php';
|
||
|
|
}
|
||
|
|
if (str_starts_with(PHP_VERSION, "8.2.")) {
|
||
|
|
return require_once __DIR__ . '/8.2/functionsList.php';
|
||
|
|
}
|
||
|
|
if (str_starts_with(PHP_VERSION, "8.3.")) {
|
||
|
|
return require_once __DIR__ . '/8.3/functionsList.php';
|
||
|
|
}
|
||
|
|
if (str_starts_with(PHP_VERSION, "8.4.")) {
|
||
|
|
return require_once __DIR__ . '/8.4/functionsList.php';
|
||
|
|
}
|
||
|
|
if (str_starts_with(PHP_VERSION, "8.5.")) {
|
||
|
|
return require_once __DIR__ . '/8.5/functionsList.php';
|
||
|
|
}
|