求在网页中查看word,ppt等文档的php源码
发布网友
发布时间:2022-04-23 00:56
我来回答
共3个回答
热心网友
时间:2022-04-06 06:31
<?php
error_reporting(E_ALL ^ E_NOTICE);
require_once 'excel_reader2.php';
$data = new Spreadsheet_Excel_Reader("g1.xls");
?>
<html>
<head>
<style>
table.excel {
border-style:ridge;
border-width:1;
border-collapse:collapse;
font-family:sans-serif;
font-size:12px;
}
table.excel thead th, table.excel tbody th {
background:#CCCCCC;
border-style:ridge;
border-width:1;
text-align: center;
vertical-align:bottom;
}
table.excel tbody th {
text-align:center;
width:20px;
}
table.excel tbody td {
vertical-align:bottom;
}
table.excel tbody td {
padding: 0 3px;
border: 1px solid #EEEEEE;
}
</style>
</head>
<body>
<?php echo $data->mp(true,true); ?>
</body>
</html>追问这段php怎么没看到效果
热心网友
时间:2022-04-06 07:49
貌似是文档转换成swf格式,然后网页内嵌入flash来看的
热心网友
时间:2022-04-06 09:24
我记得IE浏览器可以在工具里面查看的,但是现在很多浏览器弄得貌似复杂,我也找不到!