如何利用C自定義實現PHP擴展

因爲有一部分代碼須要加解密,因此須要擴展PHP模塊,因而簡單的使用base64來實現簡單的加密算法。由於時間的關係,這裏主要是對如何實現PHP擴展作一個概述和記錄,並不涉及到加密算法的具體實現,網絡營銷培訓等有空再補上。php

一、環境:
centos 5
php 5.1.6
autoconf 2.59
automake 1.96
libtool
bison
flex
re2c算法

二、建立模塊
2.1 轉到php源碼目錄擴展包目錄下
cd /usr/include/php/extvim

2.2 建立一個叫作itbeing的文件夾(這裏咱們的模塊名稱就叫作itbeing了)
mkdir itbeing
cd itbeingcentos

2.3 建立config.m4文件,config.m4 文件使用 GNU autoconf 語法編寫,該文件的主要做用是 文件告訴系統構建系統哪些擴展 configure 選項是支持的,你須要哪些擴展庫,以及哪些源文件要編譯成它的一部分。網絡

  1. PHP_ARG_ENABLE(itbeing,
  2.         [Whether to enable the "itbeing" extension],
  3.         [  --enable-itbeing       Enable "itbeing" extension support])
  4.  
  5. if test $PHP_ITBEING != "no"; then
  6.         PHP_SUBST(ITBEING_SHARED_LIBADD)
  7.         PHP_NEW_EXTENSION(itbeing, itbeing.c, $ext_shared)
  8. fi

2.4 建立php_itbeing.h 頭文件ide

  1. #ifndef PHP_ITBEING_H
  2. /* Prevent double inclusion */
  3. #define PHP_ITBEING_H
  4.  
  5. /* Define extension properties */
  6. #define PHP_ITBEING_EXTNAME "itbeing"
  7. #define PHP_ITBEING_EXTVER "1.0"
  8.  
  9. /* Import configure options
  10.  * when building outside of the
  11.  * PHP source tree */
  12. #ifdef HAVE_CONFIG_H
  13. #include "config.h"
  14. #endif
  15.  
  16. /* Include PHP standard Header */
  17. #include "php.h"
  18. /*
  19.  * define the entry point symbole
  20.  * Zend will use when loading this module
  21.  */
  22. extern zend_module_entry itbeing_module_entry;
  23. #define phpext_itbeing_ptr &itbeing_module_entry
  24.  
  25. #endif /* PHP_ITBEING_H */

2.5 建立itbeing.c 文件測試

  1. #include "php_itbeing.h"
  2.  
  3. PHP_FUNCTION(itbeing_sayhi)
  4. {
  5.         char *name;
  6.         int name_len;
  7.  
  8.         if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
  9.                 &name, &name_len) == FAILURE)
  10.         {
  11.                 RETURN_NULL();
  12.         }
  13.  
  14.         php_printf("Hi, ");
  15.         PHPWRITE(name, name_len);
  16.         php_printf("!\n");
  17. }
  18.  
  19. static function_entry php_itbeing_functions[] = {
  20.         PHP_FE(itbeing_sayhi, NULL)
  21.         { NULL, NULL, NULL }
  22. };
  23.  
  24. zend_module_entry itbeing_module_entry = {
  25. #if ZEND_MODULE_API_NO >= 20010901
  26.         STANDARD_MODULE_HEADER,
  27. #endif
  28.         PHP_ITBEING_EXTNAME,
  29.         php_itbeing_functions, /* Functions */
  30.         NULL, /* MINIT */
  31.         NULL, /* MSHUTDOWN */
  32.         NULL, /* RINIT */
  33.         NULL, /* RSHUTDOWN */
  34.         NULL, /* MINFO */
  35. #if ZEND_MODULE_API_NO >= 20010901
  36.         PHP_ITBEING_EXTVER,
  37. #endif
  38.         STANDARD_MODULE_PROPERTIES
  39. };
  40.  
  41. #ifdef COMPILE_DL_ITBEING
  42. ZEND_GET_MODULE(itbeing)
  43. #endif

三、編譯模塊
3.1 phpize
3.2 ./config -enable-itbeing
3.3 make
3.4 cp modules/itbeing.so /usr/lib/php/modules
3.5 vim /etc/php.ini 添加extension = itbeing.soflex

測試:php -r 「itbeing_sayhi(’kokko’)」
網絡營銷培訓結果:Hi,kokko (fblww-0209)ui

相關文章
相關標籤/搜索