Function php_all_sys::php54::zend_fcall_info_init[][src]

pub unsafe extern "C" fn zend_fcall_info_init(
    callable: *mut zval,
    check_flags: uint,
    fci: *mut zend_fcall_info,
    fcc: *mut zend_fcall_info_cache,
    callable_name: *mut *mut c_char,
    error: *mut *mut c_char
) -> c_int

Build zend_call_info/cache from a zval*

Caller is responsible to provide a return value, otherwise the we will crash. fci->retval_ptr_ptr = NULL; In order to pass parameters the following members need to be set: fci->param_count = 0; fci->params = NULL; The callable_name argument may be NULL. Set check_flags to IS_CALLABLE_STRICT for every new usage!