When do I stop using mysql_comando commands and what version of php?

1

I would like to know when (year) the commands with mysql_<comando> were stopped and in which version of PHP,

    
asked by Victor Alvarado 11.02.2017 в 17:52
source

1 answer

1

As indicated on the PHP page, Here

  

Warning

     

This extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include:

     

mysqli_connect ()

     

PDO :: __ construct ()

Translation

  

Warning

     

This extension was declared obsolete in PHP 5.5.0 and deleted in PHP 7.0.0. The MySQLi or PDO_MySQL extensions should be used instead. See also the MySQL guide: choose an API and its related FAQs for more information. Alternatives to this function include:

     

mysqli_connect ()

     

PDO :: __ construct ()

Until the 5.5.0 version, the functions mysql_

were rendered obsolete

PHP 5.5.0 was launched June 20, 2013

Release note: Here

  

June 20, 2013   PHP 5.5.0 released!

     

PHP 5.5 has been released! Remove exciting stuff, and pretty great to see the pace of new releases. Props to the dev team!

    
answered by 11.02.2017 / 18:09
source