preg_match('|phpVersion = (.*)\n|',$wampConfFileContents,$result);
$phpVersion = str_replace('"','',$result[1]);
preg_match('|apacheVersion = (.*)\n|',$wampConfFileContents,$result);
$apacheVersion = str_replace('"','',$result[1]);
preg_match('|mysqlVersion = (.*)\n|',$wampConfFileContents,$result);
$mysqlVersion = str_replace('"','',$result[1]);
preg_match('|wampserverVersion = (.*)\n|',$wampConfFileContents,$result);
$wampserverVersion = str_replace('"','',$result[1]);
从第31行到第38行,当我打开localhost时它将发出此错误,localhost的颜色仍为黄色。我怎样才能让它变绿?
答案 0 :(得分:0)
这是因为配置文件中的空间。 我想当你在WAMP服务器菜单中选择另一个版本的Apache,PHP或MySQL时,它会更改配置文件但在等号后面删除空格: mysqlVersion =" 5.7.4"应该: mysqlVersion =" 5.7.4"