C++指针变量在PHP中怎么表示?

3) int rf_get_status(HANDLE icdev,unsigned char *_Status);
功 能: 获取读写器的版本号。
参 数:
icdev: rf_init()返回的设备描述符
_Status: 返回读写器版本信息,长度为18字节
返 回: =0: 成功
<>0: 失败
例: int st;
unsigned char status[19];
st=rf_get_status(icdev,status);

需要php_w32api.dll或者DynamicWrapper.dll包装。

我已经用DynamicWrapper.dll包装,但是调用api函数时 对于指针参数 我用PHP该怎么传递呢