summaryrefslogtreecommitdiff
path: root/Zend/tests/get_called_class_001.phpt
blob: caa6d154d9c599399a5fd692bcbf5f9b632e708d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Calling get_called_class() outside a class
--FILE--
<?php

try {
    var_dump(get_called_class());
} catch (Error $e) {
    echo $e->getMessage(), "\n";
}

?>
--EXPECT--
get_called_class() must be called from within a class