- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为win32平台构建一个php扩展,在php源代码中我找到了一个我想使用的函数php_strtolower(char *, unsigned int length),但是当我尝试调用它时, Visual Studio 提示缺少符号。
Creating library C:\projects\php_mt4_ext\Debug\php_mt4_ext_debug.lib and object C:\projects\php_mt4_ext\Debug\php_mt4_ext_debug.exp Manager.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) char * __cdecl php_strtolower(char *,unsigned int)" (__imp_?php_strtolower@@YAPADPADI@Z) referenced in function "struct _zval_struct * __cdecl GET_MANAGER_ERROR(struct manager_object *,void * * *,class std::basic_string,class std::allocator >,int)" (?GET_MANAGER_ERROR@@YAPAU_zval_struct@@PAUmanager_object@@PAPAPAXV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H@Z) C:\projects\php_mt4_ext\Debug\php_mt4_ext_debug.dll : fatal error LNK1120: 1 unresolved externals
我正在做的代码非常简单,如下
php_printf(php_strtolower("hello",strlen("hello")));
我正在导入 php5ts.lib,所有其他 php 函数似乎都没有任何问题,但这些函数却有问题。
有人知道我是否需要采取任何特殊技巧才能使用这些功能吗?
最佳答案
问题是我包含了并且我的项目是c++代码库。
例如,我需要将 php header 包装在 extern“C”中
extern "C" {
#include <php.h>
#include <info.h>
#include<zend_exceptions.h>
#include <zend_interfaces.h>
#include <ext/standard/php_string.h>
}
然后编译没有任何问题
关于php - 在 win32 c 扩展中使用 php_strtolower,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37895632/
我正在尝试为win32平台构建一个php扩展,在php源代码中我找到了一个我想使用的函数php_strtolower(char *, unsigned int length),但是当我尝试调用它时,
我是一名优秀的程序员,十分优秀!