douchun6221 2019-07-22 06:50
浏览 100
已采纳

如何使用while语句中的函数来获取关联数组值?

I'm trying to figure out how to get value from associative array by putting a function inside a while statement?

  while($row = $result->fetch_assoc()) {
  $message = $row["message"];
  $reply = $row["reply"];

   $object->gets("'.$message.'", function ($obj) {
                $obj->posts("'.$reply.'");
            });

  } 

Obviously that code wont work because the variable $reply needs to be initialized inside the function to work. How can I do this procedural style? Or is there a better way to do this?

  • 写回答

1条回答 默认 最新

  • doulan4939 2019-07-22 15:54
    关注

    I'm assuming you want to be able to access the $reply value inside your function?

    In order to get the variable within the scope of the function do following :

    while($row = $result->fetch_assoc()) {
      $message = $row["message"];
      $reply = $row["reply"];
    
       $object->gets("'.$message.'", function ($obj) use ($reply) {
                    $obj->posts("'.$reply.'");
                });
    
      } 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里