*/ class IniHelper { /** * Returns an array of php.ini locations with at least one entry * * The equivalent of calling php_ini_loaded_file then php_ini_scanned_files. * The loaded ini location is the first entry and may be empty. * * @return string[] */ public static function getAll(): array { return XdebugHandler::getAllIniFiles(); } /** * Describes the location of the loaded php.ini file(s) */ public static function getMessage(): string { $paths = self::getAll(); if (empty($paths[0])) { array_shift($paths); } $ini = array_shift($paths); if (empty($ini)) { return 'A php.ini file does not exist. You will have to create one.'; } if (!empty($paths)) { return 'Your command-line PHP is using multiple ini files. Run `php --ini` to show them.'; } return 'The php.ini used by your command-line PHP is: '.$ini; } } __halt_compiler();----SIGNATURE:----e5XI/7ZJwWt0uZs/J0Q/f/qIJ2jLLsa4RhInf7IwHsB85BNB/O+hRremuUykBwkqweE33TE69bYDtDjumCWyYZ8a8D+A8P7WCYPPqQ1yxSE+FI8VR8ZQqVqDgBNPBV4O8+PZuzo6N9ktK/jem5deP67F/JrTZhT2k49eO4RQ85FrQ1i56IHFsxiJrqMAok+QU+QnazcYPqmczdTy9D2DFwuc47yjkVYFLOsFQ2HTxNAE02jwi577PLqqK0MZnBf/FSsxYtp/JDgLeRqKYMt3dLUQBzMvTctww78MmLCLe9WgwaUJMP5HnpfUHYMeMw68r04LW2YHNqv3w8xLFvZ3kF1ErjWBDSQrHNcA9A2aUmR9fQ2k31yFtMZRzhDMhq6umSw+cf4o10zMXY5whlxC1XI0fhlPKqlwUoMKnDi2D7pUCJLQgwohOvSH8ACBpd7f8K2IxzfigMmeU3hcyPqarEloG5cP/7r+tl9TNnpJ8MiCo3kF5e3A/K1RjOP7vt+hpsBbp7z9AQy5+v7TRlAaW2y0KmCv7DyWTL67MDdKUjKAbCg1sxpUNMgbthvf5mmR2L1E3O9b4CvxC1kIpGPgJwfYo0EaHyiqfoI3VzCf1nCJLF9kMUypKThC26C8s1XcrcYZ9i1UWP8rt+OoYmPH5Jj+qXCXWEIucbT2RXkvv2I=----ATTACHMENT:----NDQ3MzYyNzQ0NTc1NzQyNyA0NzcxNTQ0MDAzNDI5MzU4IDE3NjkwMTkwMjQxNDcxOTI=