Bindings and abstractions for the Zend API to build PHP extensions natively in Rust.
Export a simple function function hello_world(string $name): string
to PHP:
```rust use extphprs::prelude::*;
pub fn hello_world(name: String) -> String { format!("Hello, {}!", name) }
// Required to register the extension with PHP.
pub fn module(module: ModuleBuilder) -> ModuleBuilder { module } ```
Calling the function from PHP:
php
var_dump(hello_world("David")); // string(13) "Hello, David!"
For more examples read the library guide.
IntoZval
and FromZval
for your own custom types,
allowing the type to be used as function parameters and return types.Our main goal is to make extension development easier.
The library guide can be read here.
The project is documented in-line, so viewing the cargo
documentation is the
best resource at the moment.
We are currently unable to deploy our documentation to docs.rs
due to the
crate requiring PHP 8.0, which is unavailable in the default Ubuntu
repositories. Documentation can be viewed
here. It is generated from the
latest master
branch. Documentation will be moved to docs.rs
when Ubuntu
updates its repositories to PHP 8.0.
See the following links for the dependency crate requirements:
This project only works for PHP >= 8.0 (for now). Due to the fact that the PHP extension system relies heavily on C macros (which cannot be exported to Rust easily), structs have to be hard coded in.
Check out one of the example projects:
Contributions are very much welcome. I am a novice Rust developer and any suggestions are wanted and welcome. Feel free to file issues and PRs through Github.
Contributions welcome include:
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Licensed under either of
at your option.