douzi2749 2016-06-15 00:06
浏览 19
已采纳

如何检查php函数中的返回值

here is my piece of php code:

Excel::load(Input::file('file'), function ($reader) {
    some_function();
});

my question is how to get the return value of some_function() and to check it if it is true, right after the execution of the Excel::load() block ? But please without the use of try-catch-block !

  • 写回答

1条回答 默认 最新

  • doushan7077 2016-06-15 00:10
    关注

    Use a returnvalue argument by reference, so that you can access it outside of the callback

    $returnValue = null;
    Excel::load(Input::file('file'), function ($reader) use (&$returnValue) {
        $returnValue = some_function();
    });
    if ($returnValue) {
        // Do stuff
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 微信聊天记录备份到电脑提示成功了,但还是没同步到电脑微信
  • ¥15 python怎么在已有视频文件后添加新帧
  • ¥20 虚幻UE引擎如何让多个同一个蓝图的NPC执行一样的动画,
  • ¥15 fluent里模拟降膜反应的UDF编写
  • ¥15 MYSQL 多表拼接link
  • ¥15 关于某款2.13寸墨水屏的问题
  • ¥15 obsidian的中文层级自动编号
  • ¥15 同一个网口一个电脑连接有网,另一个电脑连接没网
  • ¥15 神经网络模型一直不能上GPU
  • ¥15 pyqt怎么把滑块和输入框相互绑定,求解决!