intro.com.html

来自「php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容」· HTML 代码 · 共 62 行

HTML
62
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title>Introduction</title>  <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="book.com.html">COM</a></div> <div class="next" style="text-align: right; float: right;"><a href="com.setup.html">Installing/Configuring</a></div> <div class="up"><a href="book.com.html">COM</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="intro.com" class="preface">  <h1 class="title">Introduction</h1>  <p class="para">   COM is an acronym for Component Object Model; it is an object orientated   layer (and associated services) on top of DCE RPC (an open standard) and   defines a common calling convention that enables code written in any   language to call and interoperate with code written in any other language   (provided those languages are COM aware).  Not only can the code be   written in any language, but it need not even be part of the same   executable; the code can be loaded from a DLL, be found in another   process running on the same machine, or, with DCOM (Distributed COM), be   found in another process on a remote machine, all without your code even   needing to know where a component resides.  </p>  <p class="para">   There is a subset of COM known as OLE Automation which comprises a set of   COM interfaces that allow loose binding to COM objects, so that they can   be introspected and called at run-time without compile-time knowledge of   how the object works.  The PHP COM extension utilizes the OLE   Automation interfaces to allow you to create and call compatible objects   from your scripts.  Technically speaking, this should really be called   the &quot;OLE Automation Extension for PHP&quot;, since not all COM objects are OLE   compatible.  </p>  <p class="para">   Now, why would or should you use COM?  COM is one of the main ways to glue   applications and components together on the Windows platform; using COM   you can launch Microsoft Word, fill in a document template and save the   result as a Word document and send it to a visitor of your web site.  You   can also use COM to perform administrative tasks for your network and to   configure your IIS; these are just the most common uses; you can do much   more with COM.  </p>  <p class="para">   Starting with PHP 5, this extension (and this documentation) was   rewritten from scratch and much of the old confusing and bogus cruft has   be removed.  Additionally, we support the instantiation and creation of   .Net assemblies using the COM interoperability layer provided by   Microsoft.  </p>  <p class="para">    Please read <a href="http://devzone.zend.com/node/view/id/762" class="link external">&raquo; this article</a>   for an overview of the changes in this extension in PHP 5.  </p> </div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="book.com.html">COM</a></div> <div class="next" style="text-align: right; float: right;"><a href="com.setup.html">Installing/Configuring</a></div> <div class="up"><a href="book.com.html">COM</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?