function table_exists($tablename, $link, $database = false) { if(!$database) { $res = mysql_query("SELECT DATABASE()", $link); $database = mysql_result($res, 0); } $res = mysql_query("SELECT COUNT(*) AS count FROM information_schema.tables WHERE table_schema = '$database' AND table_name = '$tablename'", $link); return mysql_result($res, 0) == 1; }
mysql-php 判断一个表是否存在
与本文相关的文章
- 解决MYSQL死锁之路
- 一个简单的 MySQL的存储过程(call) 示例
- PHP Mysql数据库 长链接 短链接 (连接池 ?)
- Mysql 随机查询优化
- Mysql 添加索引 和创建索引
- 自己编译 LAMP Centos 7.2+Apache2.4+ Mysqlnd 5.6+PHP 7 详解
- MYSQL 5.6 安装 启用 和配置 InnoDB 等
- 关于什么是CGI、FastCGI、PHP-CGI、PHP-FPM、Spawn-FCGI?
- liunx 下 或centos7 下安装 MySQL-5.6
- MySql Lock wait timeout exceeded; try restarting transaction
- CentOS 7* PHP memcache 和 memcached 扩展 以及其他扩展
- Centos7 安装MySql Mariadb