您好,登錄后才能下訂單哦!
centos 6.8
1,安裝gcc
yum -y install gcc make autoconf
2,下載最新版php源碼
打開eclipse->file ->new -> c project
項目下有個重要的工具,php-src/ext/ext_skel(自動為我們創建擴展的腳本)
./ext_skel --extname=test(創建名叫test的新擴展)
cd test
修改config.m4
這兩行比較重要
dnl [ --with-test Include test support])
dnl [ --enable-test Enable test support])
變成
PHP_ARG_WITH(test, for test support,
[ --with-test Include test support])
表示啟用了這擴展
phpize(可能出現這個命令不可用,先執行yum install php-devel)
執行完生成一些文件其中有個configure
./configure (執行這個shell腳本)
執行完產生Makefile
執行make
hello.c
static function_entry hello_functions[]
改為
static zend_function_entry hello_functions[]
編譯通過了,不知道為啥
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。