【分享】PHP跳转Header(“location:”)的注意事项
header(“Location: “) 作为php的转向语句 ,可以使当前页面跳转到其他页面。在使用中需要注意:
1、用法
例:header(“Location:http://www.yanfei.info/ ”)
2、header前应没有任何输出。
3、如果之前有输出:
(1)会出现类似如下报错:
Warning: Cannot modify header information – heade...
header(“Location: “) 作为php的转向语句 ,可以使当前页面跳转到其他页面。在使用中需要注意:
1、用法
例:header(“Location:http://www.yanfei.info/ ”)
2、header前应没有任何输出。
3、如果之前有输出:
(1)会出现类似如下报错:
Warning: Cannot modify header information – heade...
最近也是在写项目中碰到的这个问题,需要将两个SELECT查询结果组合起来进行分组排序,想到了用union方法,用TP的union操作根本无法完成复杂的union操作,于是搜罗了一下,先说一下union的用法,在说一下TP中如何实现复杂的union操作。
一、UNION 用法
一 UNION语法
SELECT ... UNION[ALL | DISTINCT] SELECT ...