2026-03-30 14:54:57 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
if (str_starts_with(PHP_VERSION, "8.1.")) {
|
|
|
|
|
require_once __DIR__ . '/8.1/xmlrpc.php';
|
|
|
|
|
}
|
|
|
|
|
if (str_starts_with(PHP_VERSION, "8.2.")) {
|
2026-04-18 20:32:18 +07:00
|
|
|
require_once __DIR__ . '/8.1/xmlrpc.php';
|
2026-03-30 14:54:57 +07:00
|
|
|
}
|
|
|
|
|
if (str_starts_with(PHP_VERSION, "8.3.")) {
|
2026-04-18 20:32:18 +07:00
|
|
|
require_once __DIR__ . '/8.1/xmlrpc.php';
|
2026-03-30 14:54:57 +07:00
|
|
|
}
|
|
|
|
|
if (str_starts_with(PHP_VERSION, "8.4.")) {
|
2026-04-18 20:32:18 +07:00
|
|
|
require_once __DIR__ . '/8.1/xmlrpc.php';
|
2026-03-30 14:54:57 +07:00
|
|
|
}
|
|
|
|
|
if (str_starts_with(PHP_VERSION, "8.5.")) {
|
2026-04-18 20:32:18 +07:00
|
|
|
require_once __DIR__ . '/8.1/xmlrpc.php';
|
|
|
|
|
}
|
|
|
|
|
if (str_starts_with(PHP_VERSION, "8.6.")) {
|
|
|
|
|
require_once __DIR__ . '/8.1/xmlrpc.php';
|
2026-03-30 14:54:57 +07:00
|
|
|
}
|