summaryrefslogtreecommitdiff
path: root/tests/classes/autoload_008.phpt
blob: 1f3f0758436608f4a37b5de4f9d4db750a21157c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--TEST--
Ensure catch blocks for unknown exception types do not trigger autoload.
--FILE--
<?php
spl_autoload_register(function ($name) {
  echo "In autoload: ";
  var_dump($name);
});

function f()
{
  throw new Exception();
}
try {
  f();
}
catch (UndefC $u) {
  echo "In UndefClass catch block.\n";
}
catch (Exception $e) {
  echo "In Exception catch block. Autoload should not have been triggered.\n";
}
?>
--EXPECTF--
In Exception catch block. Autoload should not have been triggered.