- 论坛徽章:
- 0
|
[冰天雪地裸体跪求]RH8下php如何调用c写的.so函数库?
[quote]原帖由 "冰川火云"]CSDN,PHP联盟,国际村等问了两个个星期都没人知道 [/quote 发表:
那些地方怎么可以?有问题还是来这里吧。
言归正传:
扩展php首先要了解php的结构,php由3部分组成。
1、解释器 (分析和执行php源码)
2、功能部分(php中的各种函数)
3、界面部分(和Web服务器的接口)
其中第一部分和第二部分的一部分属于Zend引擎,也就是php的核心。这三部分共同构成了我们今天使用的php.
发一个漂亮的参考图
![]()
那么如果要扩展php应该从哪里下手呢?
一般也有三种可以动手的地方:
1、外部模块。
2、内建模块。
3、Zend引擎内核。
根据你的描述, 看来是想通过建立可以动态调用的外部来扩充php。那么一个php的扩充应该写成什么样子呢?这里发一个例子,这个函数非常简单,仅仅返回它的参数(声明:这已经超出我的所学所知了,如有差错还请大家指正)
- /* include standard header */
- #include “php.h”
- /* declaration of functions to be exported */
- ZEND_FUNCTION(first_module);
- /* compiled function list so Zend knows what’s in this module */
- zend_function_entry firstmod_functions[] =
- {
- ZEND_FE(first_module, NULL)
- {NULL, NULL, NULL}
- };
- /* compiled module information */
- zend_module_entry firstmod_module_entry =
- {
- “First Module”,
- firstmod_functions,
- NULL, NULL, NULL, NULL, NULL,
- STANDARD_MODULE_PROPERTIES
- };
- /* implement standard “stub” routine to introduce ourselves to Zend */
- #if COMPILE_DL
- DLEXPORT zend_module_entry *get_module(void) { return(&firstmod_module_entry); }
- #endif
- /* implement function that is meant to be made available to PHP */
- ZEND_FUNCTION(first_module)
- {
- zval **parameter;
- if((ZEND_NUM_ARGS() != 1) || (zend_get_parameters_ex(1, ¶meter)!= SUCCESS))
- {
- WRONG_PARAM_COUNT;
- }
- convert_to_long_ex(parameter);
- RETURN_LONG((*parameter)->;value.lval);
- }
复制代码
所有的模块遵循以下的共同结构:
- 头文件内容。
- 输出函数C声明。
- Zend函数块声明。
- Zend模块块声明。
- get_module()工具。
- 所有输出函数工具。
看看你的模块有没有写成这样呢?另外编写的模块应该放到php的源码树中进行编译,还需要使用php的build系统来为它设定编译参数,我估计你的模块源代码离这样的要求还很远吧。
更多的详情你可以
http://www.php.net/manual/en/zend.php
那么外部模块有哪些缺点呢?
1、速度,由于外部模块需要php在执行时动态加载
2、需要使用dl()函数,或者更改php.ini
3、外部模块的文件有可能散乱的存放在磁盘上。
其实最最重要的问题是要问一问为什么要将功能编到php的动态模块中去?
[/img] |
|