Building on top of my last post, the PHP extension for the new client and protocol library is ready as well! You can download the tarball on the Launchpad download page. The PHP extension exposes the same set of client functions that the C library provides currently, and is mostly just a wrapper to provide the PHP specific handling. To install, you’ll need the PHP development packages installed (if you have ‘phpize’ command you’re all set). After extracting the tarball, just run:
phpize
./configure
make
make install
And then add the following line to your php.ini:
extension=”drizzle.so”
I realize there is no documentation at this point, we’re working on that (please get in …
[Read more]