php扩张加载原理demo

php 的扩展原理就是函数的动态注入和调用,简单demo如下

 

head.h
=============
typedef struct function{
char * name;
void (* handler)();
} FUNCTION;

FUNCTION * function_list[10];

 

 

helloword.c
===========
#include <stdio.h>
#include "header.h"
int helloword(){
printf("%s","helloword");
}

FUNCTION f=
{
"helloword",
helloword
};

void get_module()
{
function_list[0] = &f;
}

 

maic.c
===============
#include <stdio.h>
#include "head.h"
extern void get_module();
int main(){
get_module();
function_list[0]->handler();
}

上一篇:android插件化-获取apkplug框架已安装插件-03


下一篇:Android开发实践:以“专业”的态度处理多线程