PhpBrew\Command\ListIniCommand::execute PHP Method

execute() public method

public execute ( )
    public function execute()
    {
        if ($filelist = php_ini_scanned_files()) {
            echo "Loaded ini files:\n";
            if (strlen($filelist) > 0) {
                $files = explode(',', $filelist);
                foreach ($files as $file) {
                    echo ' - ' . trim($file) . "\n";
                }
            }
        }
    }
ListIniCommand