這裡其實並不需要其它的什麼函數來支持,只需要使用MySQL提供的一些SQL語句就可以了。
這裡為了簡單起見,以MySQL的系統表USER為例,取出SELECT_PRIV這一列的所有可能值。
方法:SHOW COLUMNS FROM table_name LIKE enum_column_name
小寫的部分需要根據你的情況改變。
程序:
//By SonyMusic([email protected])
//HomePage(PHPcode.yeah.Net)
$connect_hostname="localhost";
$dbname="MySQL";
$connect_username = "root";
$connect_pass ="";
$connect_id = MySQL_connect($connect_hostname, $connect_username, $connect_pass);
MySQL_select_db($dbname);
$query="show columns from user like 'select_priv'";
$result=MySQL_db_query($dbname,$query);
$enum=MySQL_result($result,0,"type");
網管網bitsCN_com
echo $enum."
";
$enum_arr=explode("(",$enum);
$enum=$enum_arr[1];
$enum_arr=explode(")",$enum);
$enum=$enum_arr[0];
$enum_arr=explode(",",$enum);
for($i=0;$i
echo $enum_arr[$i]."
";
}
?>