在更改标题位置之前发送邮件

时间:2010-09-10 08:58:27

标签: php

来自php.net:

<html>
<?php
/* This will give an error. Note the output
 * above, which is before the header() call */
header('Location: http://www.example.com/');
?>

在更改标题位置之前,是否可以读取cookie并使用mail()?

2 个答案:

答案 0 :(得分:0)

如果屏幕上印有某些内容,

header()会出错。如果您的cookie读取不会回显/打印出来,那么它应该没问题。同样适用于mail()

答案 1 :(得分:0)

是的,完全可以读取cookie并在标题位置之前使用mail()进行重定向。