php 一个自定义的try..catch包装器代码片段,用于执行模型函数,使其成为一个单行函数调用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 一个自定义的try..catch包装器代码片段,用于执行模型函数,使其成为一个单行函数调用相关的知识,希望对你有一定的参考价值。
<?
public function executeTransactionalFunction($model, $function, $params, $return = true){
try {
if($return) {
$result = $this->{$model}->{$function}($params);
// if(has_database_error()) handle or throw new exception
return $result;
}
$this->{$model}->{$function}($params);
// if(has_database_error()) handle or throw new exception
} catch(Exception $e) { // throw or handle error }
}
以上是关于php 一个自定义的try..catch包装器代码片段,用于执行模型函数,使其成为一个单行函数调用的主要内容,如果未能解决你的问题,请参考以下文章
php try catch 捕获哪些错误
将所有内容包装在 try/catch 块中是不是构成防御性编程?
Express 和 async/await:我应该用 try/catch 包装吗?
PHP中try catch的用法
try catch和Throws处理异常的区别与自定义异常
Java异常处理try...catch语句