*/ 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:----XR5ES/5qDvahfbQgNfXJ5lfljiNj/qd4B1u7dp1rZ8kq38dTnWiGIf37Wg3whHLjSehiJjegQQgwiuB6Ptx1eMyUgqJ9p3sOspjXD/0Bg0YcFtTBv+jqEpPzK7lCuoNDPkK/YDbW8Wsrnk6pfz1UoDdjIOy1rpmuvRFP46Zh0imMBWar5m70FrmQmPjf7l4MW/qA+yTydXHEtAq8BEB+zMMJb55FdD1MlZ4whfXOqVbwNd/RZxMJglEPeqxhgD+DgnDM+qEHJhvAcmrLtQDOEHQUa11CS2edKiDYYdncQ6xBt3MwktJ7upcJhpFjxsJ01tBGpEHE7uK335HE6jQ+kx9alK+MSvXvf3TIuKx6vZU+E3yJDYdiHkNKocGcbcry/RXzMXBa8m1fuNyUg4cVm9TETLZSKmSjeyix31TbXbuD0gMvg9MkWDo5TmNel/G3IC7+GO4JKkcsV/FiVFe5mNKOlTT3YXFVn+ETT60ZmHD7x6ptWV5FbtzTfwGdFIK+tKznrl//LhecEHg0LPP/xwZGK1sM8pGpB1yIImcR/cm3wW+/AJKw2ymcgTZSB4Q2U4PHNqxo4Gp0TlkY6rxUULPcNJn58QDBYprpqB6LwVKqkS+q17QkU/FR5bSuiLuICYFNJ9vzcqBS6m/Qm96y4E5cLgvFKUgUCGpgd3hgj7o=----ATTACHMENT:----NTY3OTQ5OTM0OTU4MzAzNSA5MzMxMDQzNTA3NjA1MTc4IDUwNTg1NzI4NjU4OTc0Nzc=