PHP Gets the implementation code for all the tables in the MySQL database

Source: Internet
Author: User
The code is as follows:

function List_tables ($database) {$rs = Mysql_list_tables ($database); $tables = Array (); while ($row = Mysql_fetch_row ($ RS) {$tables [] = $row [0];} Mysql_free_result ($RS); return $tables;}

However, because the Mysql_list_tables method is obsolete, running the above program will give the method outdated hints, as follows:

Deprecated:function mysql_list_tables () is Deprecated in ... on line xxx

One way to do this is to set the error_reporting in php.ini, without displaying the method obsolete prompt information

error_reporting = E_all & ~e_notice & ~e_deprecated

Another option is to use PHP's official recommended alternative:

function List_tables ($database) {$rs = mysql_query ("SHOW tables from $database"), $tables = Array (); while ($row = Mysql_fet Ch_row ($rs)) {$tables [] = $row [0];} Mysql_free_result ($RS); return $tables;}

Related articles:

PHP gets the code for all the table names in the MySQL database

Php method for retrieving table fields from MySQL database

PHP get MySQL database version number Mysql_get_server_info

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.