PHP教程

php扩张加载原理demo

本文主要是介绍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();
}

这篇关于php扩张加载原理demo的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!