多应用+插件架构,代码干净,支持一键云编译,码云点赞13K star,4.8-4.12 预售价格198元 广告
cd /usr/local/src/php-7.0.13/ext ./ext_skel --extname=gradytest 704 ll gradytest/ 705 ll 706 cd gradytest/ 707 ll 708 vim config.m4 709 /usr/local/php7/bin/phpize 710 ll 711 ./configure --with-php-config=/usr/local/php7/bin/php-config 712 make && make install 713 ls /usr/local/php7/ 714 vim /usr/local/php7/etc/php.ini 715 php -m 716 ll 717 cd /var/www/html/www.test1.com/ 718 ll 719 vim gradytest.php [root@localhost www.test1.com]# cat gradytest.php <?php $result = confirm_gradytest_compiled("gradytest"); var_dump($result); echo "==================++++++++++++=================="; gradytest(); echo "==================++++++++++++=================="; 720 php gradytest.php 721 ll 722 cd /usr/local/src/ 723 ll 724 cd php-7.0.13/ 725 ll 726 cd ext/ 727 ll 728 cd gradytest/ 729 ll 730 cat gradytest.c 731 ll 732 vim gradytest.c 733 /usr/local/php7/bin/phpize 734 ./configure --with-php-config=/usr/local/php7/bin/php-config 735 make && make install 参考:http://blog.csdn.net/dkxnight/article/details/64923720