POST TIME:2020-12-16 18:54
	织梦dedecms的中部分tag标签点击无效的情况,开始以为是自己标签弄错了,后来无意中发现是因为dedecms5.7版本tag标签不支持大写字母,下面是解决方法:打开网站根目录的tags.php文件
	把下面一行代码
	$tag = trim($_SERVER['QUERY_STRING']);
	换成
	$tag = strtolower(trim($_SERVER['QUERY_STRING']));
	注释:PHP strtolower() 函数
定义和用法
strtolower() 函数把字符串转换为小写。
语法
	strtolower(string)
	参数 描述
	string 必需。规定要转换的字符串。
例子
	<?phpecho strtolower("Hello WORLD!");?>
	输出:hello world!
