12/25 用PHP像百度文库或豆丁网一样把doc.pdf.xls.txt等文件转换成swf文件
+0拿豆丁网来说,你上传一个doc或者pdf文件以后,它会自动转换成flash(swf)文件,很神奇吧!

其实,说来也简单,下面我们就看看PHP大神是怎么做的!
首先,需要一个小工具,它就是FlashPaper2.2(下载)!
有了它,我们就来写代码吧。
<?php
$file=dirname(__FILE__).´1.doc´;
$swf=$file.´_view.swf´;
$command = dirname(__FILE__)."FlashPaper2.2FlashPrinter.exe {$file} -o {$swf}";
system($command) ;
?>
看它,简单吗?