update : 2015.11.03
php.shukuma.com검색:
|
The DOTNET class(PHP 4 >= 4.1.0, PHP 5, PHP 7) DescriptionThe DOTNET class allows you to instantiate a class from a .Net assembly and call its methods and access its properties. $obj = new DOTNET("assembly", "classname") Methods
DOTNET::__construct
( string
$assembly_name
, string $class_name
[, int $codepage
] )
DOTNET class constructor. The returned object is an overloaded object, which means that PHP does not see any fixed methods as it does with regular classes; instead, any property or method accesses are passed through to COM and from there to DOTNET. In other words, the .Net object is mapped through the COM interoperability layer provided by the .Net runtime. Once you have created a DOTNET object, PHP treats it identically to any other COM object; all the same rules apply.
Example #1 DOTNET example
<?php
|