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::*;
/// Gives you a nice greeting! /// /// @param string $name Your name. /// /// @return string Nice greeting!
pub fn hello_world(name: String) -> String { format!("Hello, {}!", name) }
// Required to register the extension with PHP.
pub fn module(module: ModuleBuilder) -> ModuleBuilder { module } ```
Use [cargo-php
] to build IDE stubs and install the extension:
```text $ cargo install cargo-php Installing cargo-php v0.1.0 $ cargo php stubs --stdout Compiling example-ext v0.1.0 Finished dev [unoptimized + debuginfo] target(s) in 3.57s
// Stubs for example-ext
/**
* Gives you a nice greeting!
*
* @param string $name Your name.
*
* @return string Nice greeting!
*/
function hello_world(string $name): string {}
$ cargo php install --release
Compiling example-ext v0.1.0
Finished release [optimized] target(s) in 1.68s
Are you sure you want to install the extension example-ext
? yes
$ php -m
[PHP Modules]
// ...
example-ext
// ...
```
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. This can be viewed at [docs.rs].
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.