wnmp icon indicating copy to clipboard operation
wnmp copied to clipboard

easy way to change multiple PHP version please

Open syarfandi opened this issue 1 year ago • 1 comments

easy way to change multiple PHP version please

syarfandi avatar Jul 09 '23 16:07 syarfandi

private static string[] GetPHPVersions() { if (Directory.Exists($"{Program.StartupPath}\\php-bins") == false) return Array.Empty<string>(); return Directory.GetDirectories(Program.StartupPath + "\\php-bins").Select(d => new DirectoryInfo(d).Name).ToArray(); }

put your other full version PHP dir into 'php-bins' dir

longware avatar Sep 15 '23 07:09 longware