A priori, the problem arises with the name of the "360 browser".
The names and paths of the browsers installed on the system come from the registry at the key:
HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet
the top-level key, for example:
HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\Google Chrome
contains "by default" of type REG_SZ the name of the navigator
and the key of fifth level:
HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\Google Chrome\shell\open\command
contains "by default" of type REG_SZ the access path to the navigator.
Export the contents of the HKEY_LOCAL_MACHINESOFTWARE\Clients\StartMenuInternet\360........ key and post its contents here.
Post also the contents of the file : c:\wamp64\scripts\ListBrowsers.txt
You can temporarily overcome this problem by modifying the file:
C:\wamp64\scripts\getInstalledBrowsers.php
At the end of the file, comment out the line write_file(.....) in principle line 61 and add the following two lines just before the ?> php closing tag:
unlink('ListBrowsers.txt');
unlink('ListBrowsers.php');
to obtain the final result:
//write_file('ListBrowsers.txt',$FileContents);
unlink('ListBrowsers.txt');
unlink('ListBrowsers.php');
?>
---------------------------------------------------------------
Documentation Apache -
Documentation PHP -
Documentation MySQL -
Wampserver install files & addons