PHP5.5 调用C#写的dll

php中文网
发布: 2016-06-06 20:44:42
原创
1209人浏览过

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>
登录后复制

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

Cursor
Cursor

一个新的IDE,使用AI来帮助您重构、理解、调试和编写代码。

Cursor 254
查看详情 Cursor
<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>
登录后复制

报错

立即学习PHP免费学习笔记(深入)”;

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>
登录后复制

报错

立即学习PHP免费学习笔记(深入)”;

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

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

建议封装到WCF中调用

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

相关标签:
.dll文件大全
.dll文件大全

.dll文件缺失怎么办?.dll文件在哪下载?不用担心,这里为大家提供了所有的.dll文件下载,无论用户丢失的是什么.dll文件,在这里都能找到。用户保存后,在网盘搜索dll文件全称即可查找下载!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号