Develop a simple PHP extension to learn PHP extension development and the PHP kernel (PHP7)
中文文档
Install the extension
- git clone
git clone github.com/wujunze/pan… - Compilation and installation extension
$ /path/to/phpize
$ ./configure --with-php-config=/path/to/php-config
$ make && make install
- Add at last in php.ini
[say]
extension = panda.so
- Restart php-fpm

