如果沒有圖片要導(dǎo)出的話,可以使用以下簡單方式。
茅箭網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),茅箭網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為茅箭1000+提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的茅箭做網(wǎng)站的公司定做!
?php
header("Content-type:application/vnd.ms-word");
header("Content-Disposition:filename=zgfun.doc");
echo
"要導(dǎo)出的內(nèi)容一。\r\n";
echo
"要導(dǎo)出的第二行。";
?
=============
如果要導(dǎo)出帶圖片的,則需要使用把網(wǎng)頁保存為mht的格式下載。word可以直接打開。
function export_csv($filename, $data) {
header("Content-type:text/csv");
header("Content-Disposition:attachment;filename=" . $filename);
header('Cache-Control:must-revalidate,post-check=0,pre-check=0');
header('Expires:0');
header('Pragma:public');
echo $data;
header('content-Type:text/html');
echo "成功!";
}
phpmyadmin,就可以實現(xiàn)啊,導(dǎo)出成sql,另一臺機(jī)器用phpmyadmin導(dǎo)入即可
這屬于php的技術(shù);
php可以用PHPExcel直接導(dǎo)出成excel文件;
代碼如下:
require_once("../lib/excelcreator.class.php");
$myxls = new ExcelCreator ("中文Excel");
$aTableHead = '
Row ss:AutoFitHeight="0"
CellData ss:Type="String"Name3/Data/Cell ? ? CellData ss:Type="String"Surname3/Data/Cell ? ?/Row';
$aTableBody = '
Row ss:AutoFitHeight="0"
CellData ss:Type="String"Schwarz3/Data/Cell ? ? CellData ss:Type="String"Oliver3/Data/Cell ? ?/Row';
$aTableBottom = '
Row ss:AutoFitHeight="0"
CellData ss:Type="String"123/Data/Cell ? ? CellData ss:Type="String"Peter3/Data/Cell ? ?/Row';
$workSheet = $myxls-createWorkSheet ( "中文sheet1", $aTableHead, $aTableBody, $aTableBottom );
echo $myxls-createExcel ( $workSheet );