mirror of
https://github.com/php/php-src.git
synced 2026-04-24 16:38:25 +02:00
86de7963fe
Affected extensions: - opcache (use pcre) - mbstring (removed ereg functions overloading) - pgsql (use pcre) - reflection (test cases using 'ereg') SAPI: - apache (header only) - apache_hooks (header only)
12 lines
233 B
PHP
12 lines
233 B
PHP
--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)
|