您好,登錄后才能下訂單哦!
小編給大家分享一下php中使用C語言寫擴(kuò)展的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、在php源碼路徑的ext文件夾下,新建一個extend_test.def文件,編輯文件內(nèi)容為:
string my_test_function(string str,int n)
2、在當(dāng)前目錄執(zhí)行
./ext_skel --extname=extend_test --proto=extend_test.def
其中,extname是擴(kuò)展的名,proto是剛創(chuàng)建的文件,也可以用全路徑
3、在當(dāng)前目錄下會生成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、生成擴(kuò)展:
在extend_test文件夾下,運行/home/php/bin/phpize(實際為phpize所在路徑)
然后運行./configure --with-php-config=/home/php/bin/php-config(實際為php-config所在路徑)
6、編譯安裝
make make install
7、執(zhí)行完后會顯示擴(kuò)展安裝到了哪個路徑下
然后修改php.ini增加擴(kuò)展信息
extension=extend_test.so
8、測試擴(kuò)展是否可用
新建test.php文件并將內(nèi)容編輯為
<?php echo my_test_function('a',5);
保存后用php運行,顯示出aaaaa表示擴(kuò)展成功安裝
以上是php中使用C語言寫擴(kuò)展的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。