dsfsfsfsfs55656 2014-07-17 19:04
浏览 102
已采纳

在php中返回Closure的结果?

Somewhere in my __call magic method I'm invoking transactional, accepting a Closure:

try {
    $that = $this
    $this->conn->transactional(function ($conn) use ($that, $realMethod) {
        $result = call_user_func([$that, $realMethod], $conn);
        $this->conn->exec('SET foreign_key_checks = 1');
    });
} catch (\Exception $e) {
    $this->conn->exec('SET foreign_key_checks = 1');

    throw $e;
}

Is there any way to return $result from inside the Closure (or using pass by reference, etc.)?

Method $conn->transactional is not under my control:

public function transactional(Closure $func)
{
    $this->beginTransaction();
    try {
        $func($this);
        $this->commit();
    } catch (Exception $e) {
        $this->rollback();
        throw $e;
    }
}
  • 写回答

1条回答 默认 最新

  • dongzhi6146 2014-07-17 19:06
    关注

    Sure there is -- create a local variable inside the try block and capture it by reference:

    $result = null;
    $that = $this;
    $this->conn->transactional(function ($conn) use ($that, $realMethod, &$result) {
        $result = call_user_func([$that, $realMethod], $conn);
        $this->conn->exec('SET foreign_key_checks = 1');
    });
    
    return $result;
    

    Of course this assumes that transactional will call its argument on the spot, since that's the case indeed we can all be happy.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题