Home >Backend Development >PHP Tutorial >php新人 有些代码看不懂 麻烦大神讲解下

php新人 有些代码看不懂 麻烦大神讲解下

WBOY
WBOYOriginal
2016-06-23 13:27:371010browse

$id = date('YmdHis') . mt_rand(1000, 9999);

@unlink('pages/showbbs-' . $bbsId .'.html');

if ($adminDB->executeSQL("insert into tb_reply(id, content, addtime, bbs_id) values('$id', '".$_POST['content']."', '".date('Y-m-d H:i:s')."', '$bbsId')", $connID)){  
    header('location:showbbs.php?id=' . $bbsId);

}


回复讨论(解决方案)

你断章取义了,自然是看不懂的

哪部分看不懂起码说明下吧。

额就是注释下每句的意思

//生成一个时间加随机数的 id
$id = date('YmdHis') . mt_rand(1000, 9999);
//删除一个指定的文件
@unlink('pages/showbbs-' . $bbsId .'.html');
//如果插入数据库成功
if ($adminDB->executeSQL("insert into tb_reply(id, content, addtime, bbs_id) values('$id', '".$_POST['content']."', '".date('Y-m-d H:i:s')."', '$bbsId')", $connID)){  
     //则跳转到指定位置
    header('location:showbbs.php?id=' . $bbsId);

}

哦 谢谢 以后看到类似的我也知道什么意思了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP扩展开发(一)Next article:PHP敏感字过滤