最近做一个语义机器人的项目,语义相似度匹配算法不希望被客户看到,需要用C++实现,PHP网页里面要调用。
1) ext_skel来建立一个php扩展的一个框架
dnl Make sure that the comment is aligned:
dnl [ --enable-hello_module Enable hello_module support])
修改成
PHP_ARG_ENABLE(hello_module, whether to enable hello_module support,
[ --enable-hello_module Enable hello_module support])3)vi hello_module.c
执行以后会看到下面的
Configuring for:
PHP Api Version: 20090626
Zend Module Api No: 20090626
Zend Extension Api No: 220090626
然后执行:
root@ubuntu:/opt/php-5.3.2/ext/hello_module#./configure --enable-hello_module --with-php-config=/usr/local/php/bin/php-config
root@ubuntu:/opt/php-5.3.2/ext/hello_module# make
这个时候会在当前的目录下生成一个目录叫modules先存放着hello_module.so文件
cp modules/hello_module.so /usr/local/php/ext/
然后再把hello_module.so文件拷到php.ini里面的extension_dir所指定的位置6)开启扩展
extension=hello_module.so
重新起动apache
用phpinfo来察看一下ok了
我们创建扩展放在php的源码包的ext目录下。如/opt/php-5.3.2/ext/下
1) ext_skel来建立一个php扩展的一个框架
在这个目录下生成一个目录叫hello_module
2)编辑config.m4文件,我们使用enable-hello_module选项:
dnl PHP_ARG_ENABLE(hello_module, whether to enablehello_module support,dnl Make sure that the comment is aligned:
dnl [ --enable-hello_module Enable hello_module support])
修改成
PHP_ARG_ENABLE(hello_module, whether to enable hello_module support,
[ --enable-hello_module Enable hello_module support])
3)vi hello_module.c
主要是给模块添加函数:
/* Every user visible function must have an entry in my_module_functions[].*/
function_entry hello_module_functions[] = {
PHP_FE(hello_world, NULL) /* 添加着一行代码 */
PHP_FE(confirm_my_module_compiled, NULL) /* For testing, remove later. */
{NULL, NULL, NULL} /* Must be the last line in my_module_functions[] */
};
在文件的最后添加下列代码
定义函数:
PHP_FUNCTION(hello_world)
{
zend_printf("hello sdomain!");
}
4)修改php_hello_module.h
在PHP_FUNCTION(confirm_my_module_compiled ); /* For testing, remove later. */ 这行的下面添加一行:
PHP_FUNCTION(hello_world); /* 函数的声明 */
5) 执行phpize并编译
root@ubuntu:/opt/php-5.3.2/ext/hello_module# /usr/local/php/bin/phpize执行以后会看到下面的
Configuring for:
PHP Api Version: 20090626
Zend Module Api No: 20090626
Zend Extension Api No: 220090626
然后执行:
root@ubuntu:/opt/php-5.3.2/ext/hello_module#./configure --enable-hello_module --with-php-config=/usr/local/php/bin/php-config
root@ubuntu:/opt/php-5.3.2/ext/hello_module# make
这个时候会在当前的目录下生成一个目录叫modules先存放着hello_module.so文件
cp modules/hello_module.so /usr/local/php/ext/
然后再把hello_module.so文件拷到php.ini里面的extension_dir所指定的位置6)开启扩展
6)开启扩展
php.ini文件中打开这个扩展extension=hello_module.so
重新起动apache
用phpinfo来察看一下ok了