mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
11 lines
145 B
PHP
11 lines
145 B
PHP
<?php
|
|
function test($n)
|
|
{
|
|
$e = new Exception("bang-bang #$n!");
|
|
echo '<pre>', $e, '</pre>';
|
|
}
|
|
|
|
function outer() { test(101); }
|
|
|
|
outer();
|