因爲有一部分代碼須要加解密,因此須要擴展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 選項是支持的,你須要哪些擴展庫,以及哪些源文件要編譯成它的一部分。網絡
- PHP_ARG_ENABLE(itbeing,
- [Whether to enable the "itbeing" extension],
- [ --enable-itbeing Enable "itbeing" extension support])
-
- if test $PHP_ITBEING != "no"; then
- PHP_SUBST(ITBEING_SHARED_LIBADD)
- PHP_NEW_EXTENSION(itbeing, itbeing.c, $ext_shared)
- fi
2.4 建立php_itbeing.h 頭文件ide
- #ifndef PHP_ITBEING_H
- /* Prevent double inclusion */
- #define PHP_ITBEING_H
-
- /* Define extension properties */
- #define PHP_ITBEING_EXTNAME "itbeing"
- #define PHP_ITBEING_EXTVER "1.0"
-
- /* Import configure options
- * when building outside of the
- * PHP source tree */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
-
- /* Include PHP standard Header */
- #include "php.h"
- /*
- * define the entry point symbole
- * Zend will use when loading this module
- */
- extern zend_module_entry itbeing_module_entry;
- #define phpext_itbeing_ptr &itbeing_module_entry
-
- #endif /* PHP_ITBEING_H */
2.5 建立itbeing.c 文件測試
- #include "php_itbeing.h"
-
- PHP_FUNCTION(itbeing_sayhi)
- {
- char *name;
- int name_len;
-
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s",
- &name, &name_len) == FAILURE)
- {
- RETURN_NULL();
- }
-
- php_printf("Hi, ");
- PHPWRITE(name, name_len);
- php_printf("!\n");
- }
-
- static function_entry php_itbeing_functions[] = {
- PHP_FE(itbeing_sayhi, NULL)
- { NULL, NULL, NULL }
- };
-
- zend_module_entry itbeing_module_entry = {
- #if ZEND_MODULE_API_NO >= 20010901
- STANDARD_MODULE_HEADER,
- #endif
- PHP_ITBEING_EXTNAME,
- php_itbeing_functions, /* Functions */
- NULL, /* MINIT */
- NULL, /* MSHUTDOWN */
- NULL, /* RINIT */
- NULL, /* RSHUTDOWN */
- NULL, /* MINFO */
- #if ZEND_MODULE_API_NO >= 20010901
- PHP_ITBEING_EXTVER,
- #endif
- STANDARD_MODULE_PROPERTIES
- };
-
- #ifdef COMPILE_DL_ITBEING
- ZEND_GET_MODULE(itbeing)
- #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