<?php 
// main

function a()
{
    
b();
    echo 
'this is never echoed';
}

function 
b()
{
    
c();
    echo 
'this is never echoed';
}

function 
c()
{
    throw new \
Exception("argh");
    echo 
'this is never echoed';
}

a();
1