>  기사  >  php教程  >  PHP 把数据库导成excel表

PHP 把数据库导成excel表

WBOY
WBOY원래의
2016-06-13 10:54:53878검색

$DB_Server = "localhost"; 

$DB_Username = "root"; 

$DB_Password = "123456"; 

$DB_DBName = "oa"; 

$DB_TBLName = "oa_form_table";

$savename = date("YmjHis"); 

$Connect = @mysql_connect($DB_Server, $DB_Username, $DB_Password) or die("Couldn't connect."); 

mysql_query("Set Names 'utf8'"); 

$file_type = "vnd.ms-excel"; 

$file_ending = "xls"; 

header("Content-Type: application/$file_type;charset=utf8"); 

header("Content-Disposition: attachment; filename=".$savename.".$file_ending"); 

//header("Pragma: no-cache");

$now_date = date("Y-m-j H:i:s"); 

$title = "数据库名:$DB_DBName,数据表:$DB_TBLName,备份日期:$now_date";

$sql = "Select * from $DB_TBLName"; 

$ALT_Db = @mysql_select_db($DB_DBName, $Connect) or die("Couldn't select database"); 

$result = @mysql_query($sql,$Connect) or die(mysql_error());

echo("$title\n"); 

$sep = "\t"; 

for ($i = 0; $i

echo mysql_field_name($result,$i) . "\t"; 

print("\n"); 

$i = 0; 

while($row = mysql_fetch_row($result)) { 

$schema_insert = ""; 

for($j=0; $j

if(!isset($row[$j]))    www.2cto.com

$schema_insert .= "NULL".$sep; 

elseif ($row[$j] != "") 

$schema_insert .= "$row[$j]".$sep; 

else 

$schema_insert .= "".$sep; 

$schema_insert = str_replace($sep."$", "", $schema_insert); 

$schema_insert .= "\t"; 

print(trim($schema_insert)); 

print "\n"; 

$i++; 

return (true); 

?>

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.