Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<?php
function a($txt) {
  b("Glenn");
}
function b($txt) {
  c("Cleveland");
}
function c($txt) {
  var_dump(debug_backtrace());
}
a("Peter");
?>
</body>
</html>