传递给ServicedComponent(COM +)的MSSQL UTF8字符串,但使用PHP显示时输出变为大5

时间:2013-07-02 15:57:36

标签: php utf-8 com+ servicedcomponent

我将我的数据存储在我的MSSQL中作为UTF8(我确定它是UTF8)并且我使用visual studio调试工具,我可以看到我的字符串为UTF8(因为某些字符仅在UTF8中退出,而不是big5),但是在我使用PHP通过IIS fastCGI显示我的数据后,结果是big5!。

我构建了一个简单的类来测试它。你可以尝试一下。

using System.EnterpriseServices;
using System.Runtime.InteropServices;

namespace CoreService.HTML
{
    public interface ICore
    {        
        string get_string();
    }

    public class Core : ServicedComponent, ICore
    {
        public string get_string()
        {
            return "堃";
        }    
    }

}

如果你得到角色而不是?然后你做对了。但是在我用PHP调用COM +后,我总是变大。我尝试apache,它仍然是一样的。

更新:

PHP示例代码:

$object =  new COM("CoreService.HTML.Core") or die("Unable to instantiate CoreService COM object");
echo $object->get_string();

COM +安装批处理文件:(install.bat)

cd\
c:
cd C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\
gacutil /i "c:\Fashion DLL\CoreService.dll"
echo install CoreService.dll Done
cd\
cd C:\Windows\Microsoft.NET\Framework\v4.0.30319
regsvcs /u "c:\Fashion DLL\CoreService.dll"
regsvcs "c:\Fashion DLL\CoreService.dll"
echo FashionCoreService done

如果您想重试,可以使用它来卸载tlb文件,或者文件被IIS或apache锁定:

cd\
c:
cd C:\Windows\Microsoft.NET\Framework\v4.0.30319
regsvcs /u "c:\Fashion DLL\CoreService.dll"
regasm /u "c:\Fashion DLL\CoreService.dll"
echo remove FashionCoreService done
iisreset
del "c:\Fashion DLL\CoreService.tlb"
pause

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。

$ object = new COM(“CoreService.HTML.Core”,null,65001)或die(“无法实例化CoreService COM对象”); echo $ object-> get_string();

第三个参数是codepage参数,只需指定65001(utf-8),然后PHP将使用UTF-8连接COM。