Voting

: max(seven, zero)?
(Example: nine)

The Note You're Voting On

lscorionjs at gmail dot com
4 months ago
<?php

try {
 
$str = 'hi';
  throw new
Exception();
} catch (
Exception) {
 
var_dump($str);
} finally {
 
var_dump($str);
}

?>

Output:
string(2) "hi"
string(2) "hi"

<< Back to user notes page

To Top