需求: 寫第一個PHP擴充, 裡麵包含一個函數叫maxwelldu, maxwelldu可以計算陣列的長度(與count相同)
要求: 了解C/C++程式設計, 熟悉PHP程式設計
系統: CentOS6.5
環境: LNMP(yum方式安裝)
踏出第一步開始寫PHP擴充, 將藉助一個工具, 而這個工具在PHP的源碼裡面, 所以我們下載一個PHP的源碼, http://php.net /downloads.php
cd ~ mkdir software cd software wget http://cn2.php.net/distributions/php-5.6.11.tar.gz tar zxvf php-5.6.11.tar.gz cd php-5.6.11/ext
#建立擴充項目, 建立完成之後ext目錄下會多一個sayhello的資料夾,這個資料夾就是我們的擴充項目
./ext_skel --extname=maxwelldu cd maxwelldu vim config.m4
#開啟允許, 去掉PHP_ARG_ENABLE這一行前的dnl和[ --enable-maxwelldu ] 這行前面的dnl
PHP_ARG_ENABLE(maxwelldu, whether to enable maxwelldu support, dnl Make sure that the comment is aligned: [ --enable-maxwelldu Enable maxwelldu support])
#檔案結尾加上
vim php_maxwelldu.h PHP_FUNCTION(maxwelldu);
#在檔案結尾加上
vim maxwelldu.c ``` PHP_FUNCTION(maxwelldu){ zval *arr; //声明一个变量来接受数组参数 HashTable *arr_hash; //声明一个HashTable的变量 int array_count; //声明一个数组长度的变量 if(zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a", &arr)==FAILURE){ //判断接受的数组是>否是数组, 并把值放入arr中 return; } arr_hash = Z_ARRVAL_P(arr); //将数组转换成HashTable array_count = zend_hash_num_elements(arr_hash);//通过zend提供的函数获取一共有多少个元素 RETURN_LONG(array_count); //返回元素的个数 } ``` #然后修改zend_function_entry maxwelldu_functions[] = { 的内容如下 ``` const zend_function_entry maxwelldu_functions[] = { PHP_FE(maxwelldu,NULL) {NULL,NULL,NULL} }; ```
#
phpize ./configure --with-php-c/bin/php-config make make test make install
#這個時候會自動將擴充功能放到對應的擴充目錄
#修改php的設定檔, 像平常會加入mysql,memcache等擴充功能一樣
#重啟apache或php-fpm
extension=maxwelldu.so service httpd restart service php-fpm restart
#重啟apache或php-fpm
php -m
<?php $arr = [ 1, 2, 3, 4, 5 ]; echo maxwelldu($arr) == count($arr), PHP_EOL; //打印出1就表示函数返回的数组个数和系统的count函数返回值一样
rrreee
參考位址:http://blog.csdn.net/heiyeshuwu/article/details/3453538http://www.360doc.com/content/13/1226/17/14452132_340319333.shtml
http://www.nowamagic.net/librarys/veda/detaildn/1467
.http .net/super_ufo/article/details/3863731
http://www.phppan.com/2010/02/php-source-12-return_value/
http://www.ccvita.com/496.html
以上就介紹了寫第一個PHP擴展, 實現計算數組的個數,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。
🎜 🎜