mysql_connect(’localhost’,'root’,'root’) or die(’不能连接到服务器‘);
mysql_select_db(’test’); //连接数据库
$sql = “show create table id_user”; //id_userd 为表名
$query = mysql_query($sql);
$arr = mysql_fetch_array($query);
$b = strstr($arr[1],’AUTO_INCREMENT=’); //获取子字符串,包含AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 )
$result = intval(substr($b,15)); //substr()从字符串第16个位置获取字符串,再对获取后的字符串进行int类型转换
echo ‘AUTO_INCREMENT的值’ .$result; //输出结果:即为下一次插入数据时的ID值