×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: PHP
Posted by: Eric Moore
Added: Jan 24, 2022 2:20 AM
Views: 395
Tags: no tags
  1. try {
  2.      include './inc/inc.php';
  3.      print addTwo(12,14);
  4. } catch (Exception $exc) {
  5.     echo $exc->getTraceAsString();
  6. } finally {
  7.     print $h.'try succeeded';
  8.    
  9. }