Lae/app/Helpers/helpers.php

16 lines
229 B
PHP
Raw Permalink Normal View History

2023-03-06 02:21:30 +00:00
<?php
function t($fun): array
{
$output = [null, null, null];
try {
$output[0] = $fun();
} catch (Exception $e) {
$output[1] = $e->getMessage();
$output[2] = $e;
}
return $output;
}