php-src/ext/reflection/tests/ReflectionFunction_isDeprecated_basic.phpt

18 lines
325 B
Plaintext
Raw Normal View History

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