>백엔드 개발 >PHP 튜토리얼 >PHP5.5 调用C#写的dll

PHP5.5 调用C#写的dll

WBOY
WBOY원래의
2016-06-06 20:44:421076검색

dll

<code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;

namespace Toledo
{
    [ComVisible(true)]
    public class Scale
    {
        public string write()
        {
            return "hello world!";

        }

    }
}
</code>

已经强制签名、已经注册:

<code>regasm  Toledo.dll 

gacutil /I Toledo.dll  
</code>

PHP.ini

<code>[PHP_COM_DOTNET]
extension=php_com_dotnet.dll
</code>

index.php

<code><?php $j = new COM("Toledo.Scale") or die("调用COM失败!");
    $s = $j->write();
    echo $s;
</code>

报错

Fatal error: in D:\xampp\htdocs\com\index.php on line 2

非常费解,求指点! -_-||

回复内容:

dll

<code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;

namespace Toledo
{
    [ComVisible(true)]
    public class Scale
    {
        public string write()
        {
            return "hello world!";

        }

    }
}
</code>

已经强制签名、已经注册:

<code>regasm  Toledo.dll 

gacutil /I Toledo.dll  
</code>

PHP.ini

<code>[PHP_COM_DOTNET]
extension=php_com_dotnet.dll
</code>

index.php

<code><?php $j = new COM("Toledo.Scale") or die("调用COM失败!");
    $s = $j->write();
    echo $s;
</code>

报错

Fatal error: in D:\xampp\htdocs\com\index.php on line 2

非常费解,求指点! -_-||

建议封装到WCF中调用

http://www.cnblogs.com/tianbang/archive/2012/05/10/2494147.html

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.