是否可以捕获由也会导致异常的函数创建的输出?
function functionWhichCreatesOutputThenCausesAnException() {
"hello"
1/0
"world"
}
try {
$result = functionWhichCreatesOutputThenCausesAnException
} catch {
$($error[0])
}
我的函数创建的输出显示在我的终端中。我想捕捉“你好”。这可能吗?