summaryrefslogtreecommitdiff
path: root/tests/classes/autoload_008.phpt
blob: 905fcaadf40989d12ce64a0ee5de9effa49e8b8e (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";
}
?>
--EXPECT--
In Exception catch block. Autoload should not have been triggered.