设置名称为"username",值为"root"的cookie过期时间为1天后的代码是
A. <?php$expire=time()+60*60*24;setcookie("username", "root", $expire);?>
B. <?php$expire=time()+60*60;setcookie("username", "root", $expire);?>
C. <?php$expire=time()+60*24;setcookie("username", "root", $expire);?>
D. <?php$expire=60*60*24;setcookie("username", "root", $expire);?>