Loading... # [php return 和 finally 组合使用,使return不终止函数运行](https://blog.p2hp.com/archives/1657) 如下示例:php>=5.5 ```php <?php function example() { try { //例如打开mysql连接 if(condition) { return false; } } finally { // 关闭sql连接,这里会执行即使return被调用。 } } ?> ``` 最后修改:2023 年 08 月 08 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏