ext-php-rs

Bindings and abstractions for the Zend API to build PHP extensions natively in Rust.

Example

Export a simple function function hello_world(string $name): string to PHP:

```rust use extphprs::prelude::*;

[php_function]

pub fn hello_world(name: String) -> String { format!("Hello, {}!", name) }

// Required to register the extension with PHP.

[php_module]

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.

Features

Goals

Our main goal is to make extension development easier.

Documentation

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. This can be viewed at [docs.rs].

Requirements

See the following links for the dependency crate requirements:

Usage

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

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.

Resources

License

Licensed under either of

at your option.