>백엔드 개발 >PHP 튜토리얼 >php 调用 C++ dll

php 调用 C++ dll

WBOY
WBOY원래의
2016-06-23 14:39:371322검색

动态库中要调用的函数

extern "C" int __stdcall GameRegister(char* szSystemInfo, char *szRegCode, char *szLicense);


PHP代码
<?php                $dw = new Com("DynamicWrapper");				$dw->Register("EducationGameRegister.dll", "GameRegister", 'i=sss', "f=s", "r=u"); 								$reg_code = "";				$ch = $dw->GameRegister("P2G9YFWGZW68G","2597367cea95b2cf0aace3bd5059c33e",&$reg_code);								echo "Return Value:".$ch;				echo "Register Code:".$reg_code;	            ?>


运行时出现下面的错误: 
Fatal error: Uncaught exception 'com_exception' with message 'Error [0x80070057] 参数不正确。 ' in D:\WAMP\WWW\index.php:11 Stack trace: #0 D:\WAMP\WWW\index.php(11): com->Register('EducationGameRe...', 'GameRegister', 'i=sss', 'f=s', 'r=l') #1 {main} thrown in D:\WAMP\WWW\index.php on line 11

初次接触PHP,大家帮我看一下,谢谢了!


回复讨论(解决方案)

原型要求参数是指针,而 com 是不能传递指针的

PHP还能调用C++啊  真没听说过,坐等高人

 $ch = $dw->GameRegister("P2G9YFWGZW68G","2597367cea95b2cf0aace3bd5059c33e",$reg_code);
????

这样也不行的。

我也碰到了这个问题,楼主解决了么

我也碰到了这个问题,楼主解决了么

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