编程语言
首页 > 编程语言> > php-zend_call_method_with_N_params

php-zend_call_method_with_N_params

作者:互联网

PHP扩展开发中有zend_call_method_with_0_params,zend_call_method_with_1_params和zend_call_method_with_2_params.

但是如何调用具有两个以上参数的方法?

解决方法:

我以前的回答是错误的.您必须直接使用zend_call_function.请参见zend_call_method的正文.基本上,您必须首先准备一个zend_fcall_info对象.参数的数量应存储在fci.param_count字段中,fci.params应具有包含fci.param_count元素的数组.

标签:php-extension,c-3,zend-framework,php
来源: https://codeday.me/bug/20191101/1987080.html