Open Issues Need Help
View All on GitHubBindings for the Zend API to build PHP extensions natively in Rust.
AI Summary: The issue is a linker error during the `cargo test` phase of the `ext-php-rs` project. The linker cannot find several required symbols from the PHP Zend API, indicating missing or incorrectly configured link libraries. The solution likely involves correctly specifying the paths to the PHP libraries (including `libphp8.so` or similar) using the `cargo:rustc-link-lib` directive in the `build.rs` script or through environment variables, and potentially ensuring the correct PHP version is used.
Bindings for the Zend API to build PHP extensions natively in Rust.