*/ 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:----Ca9Y0nJyBEls4UMR3sL39ASRzw86HKnfMYtrVaz2fNWZmtRBj9WsAf25fr/Ztlz1fnrSXovaEl+jfWrZ6lFcp/2F1xhayA59ISyOYjNzpPJOFZhvkGeX4ZJY959lCsMx5R/c/oGIXS4TeO+LBtbblFnBiPfOX6IDpGjcWWwRluDMIy0tHWfLHdDldVd60zhNeTUBliw5RXNNn6b+y0EsZvzOk+8tcnMOyNdyBLL1/Bww2MlJ/hlCyQdQxDvk2Jlb5G+/d3Qg2y2J5hwXsGKNeAVoM4yq3rJ3fFxZ2CedLIlDLuvX1mO7ccj9H24UaX7cdE91WgqHb5jN91T2fd6Uz4VcZiLiXhfgjJ3zYlkuQ21hD+DT3RY3x492DtLQGT+v30tB+IY3mf/V/uYK6hga5ImkCWNWQ0CptswOPp5gwpokaiAlIfsFSxcEDcmdiV9g+mqMaxgoGnWhPtFizQq+aoFaZWRhC7fH84DGt/EJKF+mG+FQBz5NBN9o+AK0QbG55HaFKjhMZ8qVubq1rFPT+UUbOwBIvOdZprhF1yk4LBE8CykgWKH/Fhy7HtuuB6a14WCQ9Fqk9L8e6nof5vYRYG2pJDJS3aiLVs9J9KnadJc04Zk1sEbK0gTQiL78uts58Yx+p5tfYi4mJV35VlSNDF9TmxiWrExhax7UEdYJu/w=----ATTACHMENT:----OTM4MjAyNDU5NjQ5Njk0IDUzOTg3ODExNzYxMDIyNCA3MjA4NzIwNDUyMTMwOTcy