PHP脚本的10个技巧(6)
程序员文章站
2022-03-31 12:11:15
php和com 如果你是一名冒险份子,而且你正在使用cgi、isapi或apache模块版本的windows系统上运行着php,那么你也可以获得系统的com功能。现在,解释...
php和com
如果你是一名冒险份子,而且你正在使用cgi、isapi或apache模块版本的windows系统上运行着php,那么你也可以获得系统的com功能。现在,解释com(微软的组件对象模型)的工作留给了微软和那些大部头的图书来完成。然而,知道点com也没什么错,下面有一个普通的(没有双关语,针对很普通)代码小片断。
这代码小片断使用php在后台启动microsoft word、打开一个新文件、键入一些文本、保存该文件然后关闭应用程序:
<?
// create a reference to a new com component (word)
$word = new com("word.application") or die("can't start word!");
// print the version of word that's now in use
echo "loading word, v. {$word->version}<br>";
// set the visibility of the application to 0 (false)
// to open the application in the forefront, use 1 (true)
$word->visible = 0;
// create a new document in word
$word->documents->add();
// add text to the new document
$word->selection->typetext("testing 1-2-3...");
//save the document in the windows temp directory
$word->documents[1]->saveas("/windows/temp/comtest.doc");
// close the connection to the com component
$word->quit();
// print another message to the screen
echo "check for the file...";
?>
假设你正在运行一个内联网web站点,该站点把数据存放在microsoft sql server数据库内,你的用户需要excel格式的数据。那么,你可以让php执行必要的sql查询并且格式化输出结果,然后使用com启动excel,把数据传输给它,最后再把文件存储到用户的桌面系统内。
如果你是一名冒险份子,而且你正在使用cgi、isapi或apache模块版本的windows系统上运行着php,那么你也可以获得系统的com功能。现在,解释com(微软的组件对象模型)的工作留给了微软和那些大部头的图书来完成。然而,知道点com也没什么错,下面有一个普通的(没有双关语,针对很普通)代码小片断。
这代码小片断使用php在后台启动microsoft word、打开一个新文件、键入一些文本、保存该文件然后关闭应用程序:
<?
// create a reference to a new com component (word)
$word = new com("word.application") or die("can't start word!");
// print the version of word that's now in use
echo "loading word, v. {$word->version}<br>";
// set the visibility of the application to 0 (false)
// to open the application in the forefront, use 1 (true)
$word->visible = 0;
// create a new document in word
$word->documents->add();
// add text to the new document
$word->selection->typetext("testing 1-2-3...");
//save the document in the windows temp directory
$word->documents[1]->saveas("/windows/temp/comtest.doc");
// close the connection to the com component
$word->quit();
// print another message to the screen
echo "check for the file...";
?>
假设你正在运行一个内联网web站点,该站点把数据存放在microsoft sql server数据库内,你的用户需要excel格式的数据。那么,你可以让php执行必要的sql查询并且格式化输出结果,然后使用com启动excel,把数据传输给它,最后再把文件存储到用户的桌面系统内。
下一篇: 打造计数器DIY三步曲(上)