小編給大家分享一下php中使用C語言寫擴展的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、微信平臺小程序開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了陸河免費建站歡迎大家使用!
1、在php源碼路徑的ext文件夾下,新建一個extend_test.def文件,編輯文件內(nèi)容為:
string my_test_function(string str,int n)
2、在當前目錄執(zhí)行
./ext_skel --extname=extend_test --proto=extend_test.def
其中,extname是擴展的名,proto是剛創(chuàng)建的文件,也可以用全路徑
3、在當前目錄下會生成extend_test文件夾,編輯extend_test文件夾下的config.m4
去掉一下三行的dnl的注釋
PHP_ARG_ENABLE(extend_test, whether to enable extend_test support, Make sure that the comment is aligned: [ --enable-extend_test Enable extend_test support])
4、編輯extend_test文件夾下的extend_test.c文件
找到以下方法并修改
PHP_FUNCTION(my_test_function) { char *str = NULL; int argc = ZEND_NUM_ARGS(); size_t str_len; zend_long n; char *result; char *ptr; zend_long result_length; if (zend_parse_parameters(argc TSRMLS_CC, "sl", &str, &str_len, &n) == FAILURE) return; result_length = str_len * n; result = (char *) emalloc(result_length + 1); ptr = result; while (n--) { memcpy(ptr, str, str_len); ptr += str_len; } *ptr = '\0'; RETURN_STRINGL(result, result_length); }
5、生成擴展:
在extend_test文件夾下,運行/home/php/bin/phpize(實際為phpize所在路徑)
然后運行./configure --with-php-config=/home/php/bin/php-config(實際為php-config所在路徑)
6、編譯安裝
make make install
7、執(zhí)行完后會顯示擴展安裝到了哪個路徑下
然后修改php.ini增加擴展信息
extension=extend_test.so
8、測試擴展是否可用
新建test.php文件并將內(nèi)容編輯為
保存后用php運行,顯示出aaaaa表示擴展成功安裝
以上是php中使用C語言寫擴展的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
文章題目:php中使用C語言寫擴展的方法
文章路徑:http://weahome.cn/article/jgpcjo.html