blob: 720ac95f4f24320d790dc16cdf244b01e0bbd618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--TEST--
ReflectionFunction::isDeprecated
--CREDITS--
Stefan Koopmanschap <stefan@phpgg.nl>
TestFest PHP|Tek
--FILE--
<?php
$rc = new ReflectionFunction('magic_quotes_runtime');
var_dump($rc->isDeprecated());
--EXPECTF--
bool(true)
|