phper-framework / phper

The framework that allows us to write PHP extensions using pure and safe Rust whenever possible.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

建议把module_number 公开出来 不然连常量声明都做不了

shanliu opened this issue · comments

pub struct ModuleContext {
    #[allow(dead_code)]
    r#type: c_int,
    module_number: c_int, =》 pub module_number: c_int,
}