You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
看你的例子里注册类是zend_register_internal_class_ex(&ce TSRMLS_CC);
但是我实际使用的时候 error: too few arguments to function call, expected 3, have 1
Huaerjie_ce=zend_register_internal_class_ex(&ce TSRMLS_CC);
的错误,改为zend_register_internal_class_ex(&ce,NULL,NULL TSRMLS_CC);
就好了,请问是php版本的缘故么?
我的版本是5.6.24
The text was updated successfully, but these errors were encountered:
看你的例子里注册类是zend_register_internal_class_ex(&ce TSRMLS_CC);
但是我实际使用的时候 error: too few arguments to function call, expected 3, have 1
Huaerjie_ce=zend_register_internal_class_ex(&ce TSRMLS_CC);
的错误,改为zend_register_internal_class_ex(&ce,NULL,NULL TSRMLS_CC);
就好了,请问是php版本的缘故么?
我的版本是5.6.24
The text was updated successfully, but these errors were encountered: