需求
COM 函数仅可用于 PHP 的 Windows 版本。 安装
这些函数作为 PHP 核心的一部分,无需被安装即可使用。PHP 的 Windows 版本已经内置该扩展模块的支持。您无需加载任何附加的扩展库即可使用这些函数。

解决方案 »

  1.   

    我现在就是WINDOWS版本啊.以前试过可以的啊.怪事!
      

  2.   

    The COM class provides a framework to integrate (D)COM components into your php scripts. Methods
    string COM::COM ( string module_name [, string server_name [, int codepage]])
    COM class constructor. Parameters: 
    module_name
    name or class-id of the requested component. server_name
    name of the DCOM server from which the component should be fetched. If NULL, localhost is assumed. To allow DCOM com.allow_dcom has to be set to TRUE in php.ini. codepage
    specifies the codepage that is used to convert php-strings to unicode-strings and vice versa. Possible values are CP_ACP, CP_MACCP, CP_OEMCP, CP_SYMBOL, CP_THREAD_ACP, CP_UTF7 and CP_UTF8. 
    例子 1. COM example (1)// starting word
    $word = new COM("word.application") or die("Unable to instanciate Word");
    print "Loaded Word, version {$word->Version}\n";//bring it to front
    $word->Visible = 1;//open an empty document
    $word->Documents->Add();//do some weird stuff
    $word->Selection->TypeText("This is a test...");
    $word->Documents[1]->SaveAs("Useless test.doc");//closing word
    $word->Quit();//free the object
    $word->Release();
    $word = null;