bcdiv是什么函数?在一个分页函数中看见的,不懂
如题,$sql="select count(*) as total from tnews";
$rst=mysql_query($sql);
$row=mysql_fetch_array($rst);
$rowcount=$row["total"];
mysql_free_resualt($rst);
$pagecount=bcdiv($rowcount+$pagesize-1,$pagesize,0);//算出总共有几页;
还有一个问题,我刚学数据库 第一句那个select count(*)as total from tnews;中 as total 是什么意思,是把值给 total吗?