- Notifications
You must be signed in to change notification settings - Fork20
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
If I'm getting this right, this library look like it solves a slimilar problem asext-php-rs. As I'm unfarmiliar in PHP extension development and would like to play around a bit, what are the differences between phper and ext-php-rs? Are there use cases where one is more suitable than the other (PHP version support, general feature set, performance, portability, general project goal, etc.)? phper ext-php-rs: |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 2 comments 3 replies
-
It seems that phper is earlier than ext-php-rs, so you can choose by yourself. |
BetaWas this translation helpful?Give feedback.
All reactions
-
@jmjoy is phper support zts? by code I saw mention and it seems yes, |
BetaWas this translation helpful?Give feedback.
All reactions
-
Not support yet. |
BetaWas this translation helpful?Give feedback.
All reactions
-
Hi@jmjoy I'm a contributor and somewhat-heavy use of ext-php-rs, and jst discovered phper too, thanks for creating the project! I wondered if you could share your thoughts on the two approaches of the projects. Is it possible to bring the projects together? For one, I'd prefer to be putting contributions efforts as much combined as possible, and would be open to pulling the projects together if that would be possible. |
BetaWas this translation helpful?Give feedback.
All reactions
-
This is a framework that supports the development of PHP extensions with pure Rust (possibly without C/C++), can effectively use the Rust ecosystem, mainly the encapsulation of Zend api. I see this enthusiastic person made a comparison:https://github.com/rtio/rust_php_ext_examples. I don't think it's necessary to merge the two projects, because many open source projects are reinventing the wheel. 😄 |
BetaWas this translation helpful?Give feedback.