我正在尝试在.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.
有人知道我在想什么吗?
谢谢,
埃里克
最佳答案
实际上,我只是在此线程http://phalanger.codeplex.com/discussions/1345中找到了解决方案
请参阅ladaprosek的帖子,以及将App.config复制到目标目录的需要。
关于c# - 与Phalanger一起使用curl,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1707053/