How can I know which database is currently being used using code?

WBOY
Release: 2016-07-29 09:10:30
Original
1529 people have browsed it

One day, an error suddenly occurred in the production environment. The exception thrown was probably that a certain table did not exist. I thought at the time, how could it not exist? Could it be that it was attacked by hackers? So I just want to know which database is currently used

$current_database = mysql_query("SELECT DATABASE()") or die(mysql_error());
echomysql_result($current_database,0);
Copy after login

The above introduces how to use code to know which database is currently being used? , including relevant content, I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!