我有错误:注意:未定义的偏移:第32行的C:\ wamp \ www \ index.php中的1,第34行的第34行,第38行

时间:2017-06-05 07:48:52

标签: php mysql

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的颜色仍为黄色。我怎样才能让它变绿?

1 个答案:

答案 0 :(得分:0)

这是因为配置文件中的空间。 我想当你在WAMP服务器菜单中选择另一个版本的Apache,PHP或MySQL时,它会更改配置文件但在等号后面删除空格: mysqlVersion =" 5.7.4"应该: mysqlVersion =" 5.7.4"