Skip to content

Commit b430759

Browse files
committed
Merge pull request #588 from galdiolo/patch-1
mysql extension removed as of PHP 7.0.0
2 parents 7c6cb16 + 9733ef4 commit b430759

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

_posts/07-02-01-Databases_MySQL.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ anchor: mysql_extension
66

77
## MySQL Extension {#mysql_extension_title}
88

9-
The [mysql] extension for PHP is no longer in active development, and is [officially deprecated as of PHP 5.5.0]
10-
[mysql_deprecated], meaning that it will be removed within the next few releases. If you are using any functions that
9+
The [mysql] extension for PHP is no longer in active development, is [deprecated as of PHP 5.5.0]
10+
[mysql_deprecated], and has been [officially removed as of PHP 7.0.0][mysql_removed]. If you are using any functions that
1111
start with `mysql_*` such as `mysql_connect()` and `mysql_query()` in your applications then these will simply not be
12-
available in later versions of PHP. This means you will be faced with a rewrite at some point down the line, so the
12+
available in PHP 7.0.0. This means you will be faced with a rewrite at some point down the line, so the
1313
best option is to replace mysql usage with [mysqli] or [PDO] in your applications within your own development schedules
1414
so you won't be rushed later on.
1515

@@ -22,6 +22,7 @@ or use [PDO].**
2222

2323
[mysql]: http://php.net/mysql
2424
[mysql_deprecated]: http://php.net/migration55.deprecated
25+
[mysql_removed]: http://php.net/manual/en/migration70.removed-exts-sapis.php
2526
[mysqli]: http://php.net/mysqli
2627
[pdo]: http://php.net/pdo
2728
[mysql_api]: http://php.net/mysqlinfo.api.choosing

0 commit comments

Comments
 (0)