使用卷曲与Phalanger

时间:2009-11-10 10:46:08

标签: c# phalanger

我正在尝试在.NET应用程序中使用PHP Phalanger curl库php_curl.mng.dll。我按如下方式设置了我的App.config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <phpNet>
    <classLibrary>
      <add assembly="php_curl.mng, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4ef6ed87c53048a3" section="curl" />
    </classLibrary>
  </phpNet>
</configuration>

我正试图在C#中调用curl_init():

  PHP.Library.Curl.curl_init();

代码编译时没有错误,但在到达指令时会触发异常:

  PHP.Core.PhpException: Call to undefined external function 'curl_init', extension 'php_curl' - check configuration.

有人知道我错过了什么吗?

谢谢,

埃里克。

1 个答案:

答案 0 :(得分:0)

实际上我刚刚在这个帖子http://phalanger.codeplex.com/discussions/1345

中找到了解决方案

请参阅ladaprosek的帖子以及将App.config复制到目标目录的需要。