摘要:例如,这里要创建一个名为的扩展现在,在目录下出现了一个新建的扩展目录这时,该扩展是无法编译通过的,需要先编辑文件才行。
首先需要确定系统中安装了gcc编译器,合适版本的bison等,下面是从源码编译安装PHP需要执行的基本命令:
# cd php-src # ./buildconf # ./configure --enable-debug --enable-maintainer-zts --enable-cli # make # make install构建一个基本的扩展骨架
在PHP扩展开发时,使用ext_skel完成扩展的结构骨架创建。
$ ./ext_skel ./ext_skel --extname=module [--proto=file] [--stubs=file] [--xml[=file]] [--skel=dir] [--full-xml] [--no-help] --extname=module 这里的module是要创建的扩展名称 --proto=file 这里的file文件包含了要创建的函数的原型 --stubs=file generate only function stubs in file --xml generate xml documentation to be added to phpdoc-cvs --skel=dir 创建扩展骨架的目录 --full-xml generate xml documentation for a self-contained extension (not yet implemented) --no-help don"t try to be nice and create comments in the code and helper functions to test if the module compiled
注意: ext_skel命令文件在源文件的ext目录下。
这里的--extname参数是要创建的扩展名称,扩展名称为 小写字母 + 下划线 组成,并且,
在ext目录中必须是唯一的。
例如,这里要创建一个名为ext_demo_1的PHP扩展:
/vagrant/ext$ ./ext_skel --extname=ext_demo_1 Creating directory ext_demo_1 Creating basic files: config.m4 config.w32 .svnignore ext_demo_1.c php_ext_demo_1.h CREDITS EXPERIMENTAL tests/001.phpt ext_demo_1.php [done]. To use your new extension, you will have to execute the following steps:
$ cd ..
$ vi ext/extdemo1/config.m4
$ ./buildconf
$ ./configure --[with|enable]-extdemo1
$ make
$ ./php -f ext/extdemo1/extdemo1.php
$ vi ext/extdemo1/extdemo1.c
$ make
Repeat steps 3-6 until you are satisfied with ext/extdemo1/config.m4 and
step 6 confirms that your module is compiled into PHP. Then, start writing
code and repeat the last two steps as often as necessary.
现在,在ext目录下出现了一个新建的扩展目录ext_demo_1:
/vagrant/ext/ext_demo_1$ ls config.m4 CREDITS ext_demo_1.c php_ext_demo_1.h config.w32 EXPERIMENTAL ext_demo_1.php tests
这时,该扩展是无法编译通过的,需要先编辑config.m4文件才行。
配置文件config.m4配置文件config.m4告诉UNIX构建系统扩展支持的configure选项以及扩展需要的额外的库,
包含哪些源文件等,该文件使用的是GNU的autoconf语法,以dnl开头的行为注释,使用中括号([和])包含的为字符串。
autoconf语法参见 AUTOCONF文档
PHP_ARG_ENABLE(ext_demo_1, whether to enable ext_demo_1 support, [ --enable-ext_demo_1 Enable ext_demo_1 support]) if test "$PHP_EXT_DEMO_1" != "no"; then PHP_SUBST(EXT_DEMO_1_SHARED_LIBADD) PHP_NEW_EXTENSION(ext_demo_1, ext_demo_1.c, $ext_shared) fi
上述为autoconf的配置文件,第一个宏PHP_ARG_ENABLE,含有三个参数:
extdemo1 这是第一个参数,为./configure建立了名为enable-ext_demo_1的选项
第二个参数将会在./configure命令处理到该扩展的配置文件时,显示该参数的内容
第三个参数是./configure命令的帮助,在使用./configure --help的时候显示
第二个宏为PHP_NEW_EXTENSION,该宏声明了扩展的模块和必须要编译作为扩展一部分的源码文件。
如果需要多个源文件,则使用空格分隔,第三个参数$ext_shared与调用
PHP_SUBST(EXT_DEMO_1_SHARED_LIBADD)有关。
PHP_NEW_EXTENSION(ext_demo_1, ext_demo_1.c, $ext_shared)编译扩展
修改完config.m4文件之后,接下来编译PHP和扩展。
/vagrant$ ./configure --disable-libxml --enable-ext_demo_1 --disable-dom --disable-simplexml --disable-xml --disable-xmlreader --disable-xmlwriter --without-pear --prefix=/usr/local/php /vagrant$ make /vagrant$ sudo make install Installing PHP SAPI module: cgi Installing PHP CGI binary: /usr/local/php/bin/ Installing PHP CLI binary: /usr/local/php/bin/ Installing PHP CLI man page: /usr/local/php/man/man1/ Installing build environment: /usr/local/php/lib/php/build/ Installing header files: /usr/local/php/include/php/ Installing helper programs: /usr/local/php/bin/ program: phpize program: php-config Installing man pages: /usr/local/php/man/man1/ page: phpize.1 page: php-config.1 /vagrant/build/shtool install -c ext/phar/phar.phar /usr/local/php/bin ln -s -f /usr/local/php/bin/phar.phar /usr/local/php/bin/phar Installing PDO headers: /usr/local/php/include/php/ext/pdo/
此时,PHP安装在了/usr/local/php目录下,进入该目录,可以看到如下文件:
/usr/local/php$ ls bin include lib man
进入/usr/local/php/bin目录,执行以下命令:
/usr/local/php/bin$ ./php --info|grep demo Configure Command => "./configure" "--disable-libxml" "--enable-ext_demo_1" "--disable-dom" "--disable-simplexml" "--disable-xml" "--disable-xmlreader" "--disable-xmlwriter" "--without-pear" "--prefix=/usr/local/php" ext_demo_1 ext_demo_1 support => enabled
可以看到,phpinfo()中扩展支持已经启用了,按照上述步骤安装的扩展中包含了一个测试扩展是否能够正常工作的函数,该函数名为confirm_ext_demo_1_compiled(arg),执行结果如下:
/usr/local/php/bin$ ./php -r "echo confirm_ext_demo_1_compiled("mylxsw");" Congratulations! You have successfully modified ext/ext_demo_1/config.m4. Module mylxsw is now compiled into PHP.
可以看到,ext_demo_1扩展安装成功了,关于扩展开发更多内容,请移步 AICODE.CC.
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/21086.html
摘要:简介通过扩展,我们可以在代码中使用一些特定的方法大部分的扩展都是用写的。这个目录与我们的扩展同名。我们先来在扩展中创建一个类,使用此类来渲染。接下来命令行执行以下命令来编译扩展第一次运行以上命令时,会初始化一些东西。 showImg(https://segmentfault.com/img/remote/1460000018698586); 简介: 通过 PHP 扩展, 我们可以在 p...
摘要:我们为了处理这些挑战,提出了一个新的引用测试框架当然,也是开源的,并且在整个过程中节省了上百万美元。另一方面,被证实有一些严重的缺点部署困难而且慢。在缓存刷新期间,当可用于别的进程的已缓存的文件字节码在此时损坏,就会导致崩溃。 How Badoo saved one million dollars switching to PHP7 我们成功的把我们的应用迁移到了php7上面(数百台机...
摘要:通过广泛使用且采用系统的库,避免了跨站请求伪造其中,用户能够被诱骗在你的站点上执行某些操作。小结通过使用自动加载程序所有主流框架的标配,避免了远程和本地文件包含。另外,对于伸缩性,重要的是数据库。 PHP 现在名声很糟糕,因为它曾经是可怕的。本文试着回答一些常见的关于 PHP 的断言,目的是向非技术人员解释,PHP 并不像...
摘要:最近部署上线一个项目,新的服务器,在生产环境安装配置等各种东西一大堆很麻烦。本文是我学习并使用部署项目的一个记录。另外我们可以部署不同版本的应用,例如,并且互不干扰。之后部署只需要移植镜像生成容器,就能保证环境的一致。需要使用三个镜像。 最近部署上线一个项目,新的服务器,在生产环境安装配置nginx、php、mysql、git、composer等各种东西一大堆很麻烦。docker已经火...
阅读 978·2023-04-25 14:20
阅读 1846·2021-11-24 10:20
阅读 3739·2021-11-11 16:55
阅读 2753·2021-10-14 09:42
阅读 3444·2019-08-30 15:56
阅读 1096·2019-08-30 15:55
阅读 1027·2019-08-30 15:44
阅读 739·2019-08-29 11:28