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

var_dump(get_called_class());

?>
--EXPECTF--
Warning: get_called_class() called from outside a class in %s on line %d
bool(false)