日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > php >内容正文

php

PHP扩展开发教程,通过实例来展示PHP的扩展开发和底层应用原理(C语言非zephir)...

發(fā)布時間:2025/5/22 php 162 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PHP扩展开发教程,通过实例来展示PHP的扩展开发和底层应用原理(C语言非zephir)... 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

主要是使用C語言來開發(fā)PHP擴展,現(xiàn)在的案例正在一步一步完善中,希望有興趣的朋友一起來加入和完善,現(xiàn)在已經(jīng)完成的案例如下:

DicretoryExplain
hello_wordphp hello word extension
widuuphp ini settings and read php ini configure
w_stringphp returning values

Contributing

  • 登錄 https://github.com
  • 倉庫地址分布 http://github.com/widuu/php_ext
  • 創(chuàng)建您的特性分支 (git checkout -b my-new-feature)
  • 提交您的改動 (git commit -am 'Added some feature')
  • 將您的改動記錄提交到遠(yuǎn)程 git 倉庫 (git push origin my-new-feature)
  • 然后到 github.com 網(wǎng)站的該 git 遠(yuǎn)程倉庫的 my-new-feature 分支下發(fā)起 Pull Request
  • 下邊是INI的小擴展代碼片段

    #ifdef HAVE_CONFIG_H #include "config.h" #endif#include "php.h" #include "php_ini.h" #include "ext/standard/info.h" #include "php_widuu.h"ZEND_DECLARE_MODULE_GLOBALS(widuu)const zend_function_entry widuu_functions[] = {PHP_FE(read_ini, NULL) PHP_FE_END };zend_module_entry widuu_module_entry = { #if ZEND_MODULE_API_NO >= 20010901STANDARD_MODULE_HEADER, #endif"widuu",widuu_functions,PHP_MINIT(widuu),PHP_MSHUTDOWN(widuu),NULL, NULL, PHP_MINFO(widuu), #if ZEND_MODULE_API_NO >= 20010901PHP_WIDUU_VERSION, #endifSTANDARD_MODULE_PROPERTIES };#ifdef COMPILE_DL_WIDUU ZEND_GET_MODULE(widuu) #endifPHP_INI_BEGIN()STD_PHP_INI_ENTRY("widuu.enable", "1", PHP_INI_ALL, OnUpdateBool, enable, zend_widuu_globals, widuu_globals)STD_PHP_INI_ENTRY("widuu.size", "42", PHP_INI_ALL, OnUpdateLong, size, zend_widuu_globals, widuu_globals)STD_PHP_INI_ENTRY("widuu.name", "widuu", PHP_INI_ALL, OnUpdateString, name, zend_widuu_globals, widuu_globals) PHP_INI_END()PHP_MINIT_FUNCTION(widuu) {REGISTER_INI_ENTRIES();return SUCCESS; } /* }}} *//* {{{ PHP_MSHUTDOWN_FUNCTION*/ PHP_MSHUTDOWN_FUNCTION(widuu) {UNREGISTER_INI_ENTRIES();return SUCCESS; } /* }}} *//* {{{ PHP_MINFO_FUNCTION*/ PHP_MINFO_FUNCTION(widuu) {php_info_print_table_start();php_info_print_table_header(2, "widuu support", "enabled");php_info_print_table_row(2 , "author", "widuu <admin@widuu.com>" );php_info_print_table_end();DISPLAY_INI_ENTRIES(); } /* }}} */PHP_FUNCTION(read_ini){char *str,*varname;int str_len;if( zend_parse_parameters( ZEND_NUM_ARGS() TSRMLS_CC, "s" ,&varname,&str_len) == FAILURE){php_error_docref(NULL TSRMLS_CC, E_WARNING, "don't exists parameter");return;}str = zend_ini_string( varname, str_len+1, 0 );if (!str) {RETURN_FALSE;}RETURN_STRING( str , 1);// str = zend_ini_string("widuu.name", sizeof("widuu.name"), 0);// long maxwait = zend_ini_long("widuu.size", sizeof("widuu.size"), 0);// if (str == NULL) {// php_error_docref("widuu.size", E_WARNING, "config not exists");// }// printf("%s\n",str );// printf("%d\n", maxwait );// if (name != NULL){// printf("%s\n", name);// }// RETURN_FALSE;}

    函數(shù) string read_ini(string parameter);

    echo read_ini('widuu.name');

    總結(jié)

    以上是生活随笔為你收集整理的PHP扩展开发教程,通过实例来展示PHP的扩展开发和底层应用原理(C语言非zephir)...的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。