php-src/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt
2015-03-05 00:51:05 +00:00

18 lines
325 B
PHP

--TEST--
ReflectionFunction::isDeprecated
--CREDITS--
Stefan Koopmanschap <stefan@phpgg.nl>
TestFest PHP|Tek
--SKIPIF--
<?php
if (!extension_loaded('mcrypt')) echo "skip no deprecated functions available";
?>
--FILE--
<?php
$rc = new ReflectionFunction('mcrypt_ecb');
var_dump($rc->isDeprecated());
--EXPECTF--
bool(true)