我们也可以直接通过header来删除cookie。
header("Set-Cookie:test=1393832059; expires=".gmdate('D, d M Y H:i:s \G\M\T', time()-1));
删除cookie
setcookie('test', '', time()-1);
header("Set-Cookie:test=1393832059; expires=".gmdate('D, d M Y H:i:s \G\M\T', time()-1));
删除cookie
setcookie('test', '', time()-1);
2014-11-12
末尾可以加com|cn 验证。
<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern='/[\w\-]+@\w+\.(com|cn)$/';
preg_match($pattern,$subject,$matches);
echo $matches[0];
?>
<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern='/[\w\-]+@\w+\.(com|cn)$/';
preg_match($pattern,$subject,$matches);
echo $matches[0];
?>
2014-11-11