ecshop 如何如何去除 <meta name="Generator" content="ECSHOP v2.7.3" />
打开includes/cls_template.php
1087行找到 $source = preg_replace('/<head>/i', "<head>\r\n<meta name=\"Generator\" content=\"" . APPNAME .' ' . VERSION . "\" />", $source);
将它注释或去掉就可以了。
补充PHP注释方法
在php里面可以用“//需要注释的内容”或者“/*需要注释的内容*/”
//是单行注释,也可以注释html代码
/**/可以多行注释只要在这个里面就会被注释,但是不能注释html代码