|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/104043/root/usr/local/lsws/admin/html/lib/util/build_php/ |
Upload File : |
<?php
class BuildConfig
{
const OPTION_VERSION = 1;
const BUILD_DIR = 2;
const LAST_CONF = 3;
const DEFAULT_INSTALL_DIR = 4;
const DEFAULT_PARAMS = 5;
const PHP_VERSION = 10;
const LSAPI_VERSION = 11;
const SUHOSIN_VERSION = 12;
const MEMCACHE_VERSION = 15;
const MEMCACHED_VERSION = 17;
const MEMCACHED7_VERSION = 18;
const MEMCACHE7_VERSION = 19;
const MEMCACHE8_VERSION = 20;
public static function GetVersion($field)
{
// you can update the below list to include your versions
switch ($field) {
case self::PHP_VERSION:
return [
'8.4.10',
'8.3.23',
'8.2.29',
'8.1.33',
'8.0.30',
'7.4.33',
'7.3.31',
'7.2.34',
'7.1.33',
'7.0.33',
'5.6.40'];
case self::LSAPI_VERSION: return '8.2';
case self::SUHOSIN_VERSION: return '0.9.38';
case self::MEMCACHE_VERSION: return '2.2.7';
case self::MEMCACHE7_VERSION: return '4.0.5.2'; // for php7
case self::MEMCACHE8_VERSION: return '8.2'; // for php8 https://pecl.php.net/package/memcache
case self::MEMCACHED_VERSION: return '2.2.0';
case self::MEMCACHED7_VERSION: return '3.3.0'; // for php7,php8 https://pecl.php.net/package/memcached
default: die("illegal field");
}
}
public static function Get($field)
{
switch ($field) {
case self::OPTION_VERSION:
return 5;
case self::BUILD_DIR:
return SERVER_ROOT . 'phpbuild';
case self::LAST_CONF:
return SERVER_ROOT . 'phpbuild/savedconfig.';
case self::DEFAULT_INSTALL_DIR:
return SERVER_ROOT . 'lsphp'; // actual dir will include . php base version.
case self::DEFAULT_PARAMS:
return [
'8' => '--with-mysqli --with-zlib --enable-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-mbstring --with-iconv --with-pdo-mysql --enable-ftp --with-zip --with-curl --enable-soap --enable-xml --with-openssl --enable-bcmath',
'7' => '--with-mysqli --with-zlib --with-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-mbstring --with-iconv --with-mcrypt --with-pdo-mysql --enable-ftp --enable-zip --with-curl --enable-soap --enable-xml --enable-json --with-openssl --enable-bcmath',
'5' => '--with-mysqli --with-zlib --with-gd --enable-shmop --enable-sockets --enable-sysvsem --enable-sysvshm --enable-mbstring --with-iconv --with-mysql --with-mcrypt --with-pdo --with-pdo-mysql --enable-ftp --enable-zip --with-curl --enable-soap --enable-xml --enable-json --with-openssl --enable-bcmath',
];
}
}
}
include_once( 'buildfunc.inc.php' );