免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2286 | 回复: 2
打印 上一主题 下一主题

递归怎么抱错了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-02-27 17:34 |只看该作者 |倒序浏览
2可用积分
  1. function forum_counts($msg,$current,$underCurrent,$newDate,$msg_data) //15行
  2.   {
  3.     $sql="select (forums.date>'$newDate') from forums where id=$msg";
  4.     list($isnew)=OPT_fetch_row(CRM_run_query($sql));
  5.     if ($msg==$current)
  6.     {
  7.       $underCurrent=true;
  8.       $msg_data[5]+=$isnew;
  9.     }
  10.     $sql="select id from forums where parent=$msg";
  11.     $result=CRM_run_query($sql);
  12.     while ($myrow=OPT_fetch_row($result))
  13.     {
  14.       $msg_data=forum_counts($myrow[0],$current,$underCurrent,$newDate,$msg_data);
  15.     }
  16.     $msg_data[1]++;
  17.     $msg_data[3]+=$isnew;
  18.     if ($underCurrent)
  19.     {
  20.       $msg_data[2]++;
  21.       $msg_data[4]+=$isnew;
  22.     }
  23.     return($msg_data);
  24.   }
复制代码
//38行

Cannot redeclare forum_counts() (previously declared in /var/www/opt/forums/forum_lib.php:15) in /var/www/opt/forums/forum_lib.php on line 38

论坛徽章:
0
2 [报告]
发表于 2008-02-27 18:03 |只看该作者
函数重名了,第15行和第38行。

论坛徽章:
3
金牛座
日期:2013-10-12 15:42:452015年辞旧岁徽章
日期:2015-03-03 16:54:15IT运维版块每日发帖之星
日期:2016-06-01 06:20:00
3 [报告]
发表于 2008-02-27 18:37 |只看该作者
没仔细看,但递归和循环里执行数据库查询是下下策!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP