
Inline adoc files when they are included exactly once. Also fix language tags because this inlining gives us better information on what language the code is written in.
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
== Why is this an issue?
|
|
|
|
Deprecated language features are those that have been retained temporarily for backward compatibility, but which will eventually be removed from the language. In effect, deprecation announces a grace period to allow the smooth transition from the old features to the new ones. In that period, no use of the deprecated features should be added to the code, and all existing uses should be gradually removed.
|
|
|
|
|
|
This rule raises an issue for the following functions, which were deprecated in PHP 5.5:
|
|
|
|
|
|
||Deprecated||Use Instead||
|
|
|
|
|``++preg_replace()++``|``++preg_replace_callback()++``|
|
|
|
|
|``++IntlDateFormatter::setTimeZoneID()++``|``++IntlDateFormatter::setTimeZone()++``|
|
|
|
|
|``++datefmt_set_timezone_id()++``|``++datefmt_set_timezone()++``|
|
|
|
|
|``++mysql_*++``|``++MySQLi++`` or ``++PDO_MySQL++`` extensions|
|
|
|
|
|``++mcrypt_cbc()++``||
|
|
|
|
|``++mcrypt_cfb()++``||
|
|
|
|
|``++mcrypt_ecb()++``||
|
|
|
|
|``++mcrypt_ecb()++``||
|
|
|
|
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
=== Message
|
|
|
|
* Remove this "xxx" call.
|
|
* Replace this "xxx" call with a call to "yyy".
|
|
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
=== on 24 Jul 2015, 15:03:07 Alexandre Gigleux wrote:
|
|
``++preg_replace()++`` of RSPEC-2001 is said to be a replacement solution but in PHP 5.5 this function is also deprecated and replaced.
|
|
|
|
=== on 27 Jul 2015, 15:28:04 Ann Campbell wrote:
|
|
http://php.net/manual/en/migration55.deprecated.php
|
|
|
|
=== on 12 Nov 2015, 18:06:10 Linda Martin wrote:
|
|
LGTM!
|
|
|
|
endif::env-github,rspecator-view[]
|