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

13 lines
277 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
--FILE--
<?php
// We currently don't have any deprecated functions :/
$rc = new ReflectionFunction('var_dump');
2014-06-08 08:09:14 +00:00
var_dump($rc->isDeprecated());
2009-08-30 09:30:13 +00:00
--EXPECTF--
bool(false)