写一个PHP模块(PHP extension),在中调用该模块内的函数,再通过该模块来调用so中的函数。
首先做一个简单的文件:
/**
*gcc -O -c -fPIC -o hello.o hello.c
*gcc -shared -o libhello.so hello.o
*/
intint hello_add( a, b)
{
return a + b;
}
然后将它编译成.so文件并放到系统中:
$ Ogcc - -c -fPIC -o hello.o hello.c
$ gcc -shared -o libhello.so hello.o
su
# echo /usr/local/lib > /etc/ld.so.conf.d/local.conf
# cp libhello.so /usr/local/lib
# /sbin/ldconfig
写段小程序来验证其正确性:
* hellotest.c
* gcc -o hellotest -lhello hellotest.c
*/
#include <stdio.h>
main()
int34 a = ,b = ;
"%d + %d = %d\n" printf(return0;
编译并执行:gcc -o hellotest -lhello hellotest.c./hellotest
47 + =经测试。在Ubuntu上无法通过编译,在Centos下正常编译,见下图,但是不影响后面的使用
apt-get install PHP5-dev
然后下载源代码。我使用的是PHP-5.2.3.tar.gz,解压缩。
$ wget http://eduunix.ccut.edu.cn/index2/PHP/PHP/PHP-5.3.6.tar.gz$ 5.3.6tar xzvf PHP-.tar.gzcd PHP-/ext然后通过下面的命令建立一个名为hello的模块。
./ext_skel --extname=hello执行该命令之后它会提示你应当用什么命令来编译模块,可惜那是将模块集成到内部的编译方法。如果要编译成可动态加载的PHP_hello.so,方法要更为简单。
cd hello首先编辑config.m4文件,去掉第16行和第18行的注释(注释符号为dnl)
16PHP_ARG_ENABLE(hello,whether to enable hello support,248)">:17dnl Make sure that the comment is aligned:18[ --enable-hello Enable hello support]):PHPize5然后打开PHP_hello.h
PHP_FUNCTION(confirm_hello_compiled);
之下加入函数声明:打开hello.cPHP_FE(confirm_hello_compiled,NULL)下方加入以下内容。
zend_function_entry hello_functions[] = {NULL PHP_FE(confirm_hello_compiled,248)">)PHP_FE(hello_add,248)">NULL/* Must be the last line in hello_functions[] */ {}};