blob: 4148fada0cdec99322edcecf0c855e2c8251aa80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
ReflectionFunction::isDeprecated
--CREDITS--
Stefan Koopmanschap <stefan@phpgg.nl>
TestFest PHP|Tek
--SKIPIF--
<?php
if (!extension_loaded('reflection') || !defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300) print 'skip';
?>
--FILE--
<?php
$rc = new ReflectionFunction('ereg');
var_dump($rc->isDeprecated());
--EXPECTF--
bool(true)
|