Can I use PECL extensions in HipHop?

I have an application that uses mq broker rabbit, and I have users written in php and using this extension http://pecl.php.net/package/amqp . I would like to compile these users using hiphop, but the amqp extension is not supported in hiphop. So the question is, can I compile PECL extensions in hiphop?

Thanks in advance

+5
source share
2 answers

You need to manually write the HipHop extension in C ++ to interact with the extension functionality. Most likely, the original PHP extension is of little use if it just wraps the C library anyway. See Answers on this topic for an explanation of the differences between HipHop and PHP extensions: https://groups.google.com/group/hiphop-php-dev/browse_thread/thread/51184984d948a77b

+2
source

I started the HHVM-AMQP project http://github.com/akalend/hhvm-amqp The base pecl / amqp is present, but there is a difference. See the catalog of examples. This is the developer version.

0
source

All Articles