Files
php_8/exceptions/tostring.php
2022-05-24 15:55:33 +03:00

11 lines
145 B
PHP

<?php
function test($n)
{
$e = new Exception("bang-bang #$n!");
echo '<pre>', $e, '</pre>';
}
function outer() { test(101); }
outer();