*/ 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:----POZtGSiqEqPaPKDok6Yp141S1hTuuYS8q+PUpyvBlFLU2CWmByZI9uMGA4RtR2G856QCMWHgiZkwtyCDg3bOepUlYxNrt2W/KiRT6M5AKi84gx7zjFf5RMzCOFBuzXIr4eQN9w6uD91Hv87WJv/Ru8IHtnfmMe1g0NN1fFrzZ6gUboG23ZC8dkSnLhohoeoeSmIbiYsTvqjC7oO/az4KUAVgtqbs30Sr8P947TgKlXsEPpB80CaYfNI0h3MBr0tRtEW3JrEuwBa5P8LRwzrlAxxgnsknkMJtIkbSWDuG09I4KSGzibNIkWItdGvXjqQTRmHd+2E+evV/oytXjjUliYb6/d/+QT5TF6OEd7lV3/NeG6U9Ad2jdAv7/DORaIIMjp086OqPsVCJGz/g/XLQR7JEttKtBSb3CyKnrhwxgzd/lbDaKooj8gqpD/SMJf2UDcM6Xbu6sWqz178N0tjmVFBFkqpdD07OONP/2qmelhEzrYb1Ghof4mUMr0RGvEnSGN3ZyR5g2WLEXCM4Rj7uG8YJjTsRdDBSrTXuNcVX20sX2fKb6tzgG1qm68b5IRs1sxG1EdvWMWHDh0zPTPLkf57q7NDUmdir28k4kXA1gUIPvkoe8amg3fg3Sy3zBL0+95Vprgd35Vc2b+6ZEgYbLSJhUDHgfOsda+kW8kQsTrY=----ATTACHMENT:----ODk5MjA0ODI1ODU0NDI5MiA5Mjk2MDA3NjY1MzAwMTE3IDQzNTczMzE2MTQ2Mjc1NTE=