Home >Backend Development >PHP Tutorial >c - php扩展开发都是用什么IDE工具?

c - php扩展开发都是用什么IDE工具?

WBOY
WBOYOriginal
2016-06-06 20:35:45962browse

php扩展开发都是用什么IDE工具
vs
sublime

回复内容:

php扩展开发都是用什么IDE工具
vs
sublime

PHP扩展(PECL)跟PHP引擎一样都是使用C语言开发。PHP核心开发组成员鸟哥Laruence使用的是VIM进行PHP开发。
http://www.laruence.com/2011/09/13/2139.html
书籍: http://www.walu.cc/phpbook/
案例: php-src/ext
PECL开发邮件组: http://news.php.net/php.pecl.dev
尽量编写一些phpt测试用例,php-src/tests下有很多参考.
测试时用--enable-debug编译PHP,要做到执行你的扩展逻辑,不输出任何错误信息.
用valgrind检测内存泄露.

PHP异步网络扩展Swoole作者博客: http://rango.swoole.com/
PHP中文分词扩展SCWS和XunSearch全文搜索引擎作者博客: http://hightman.cn
PHP代码加密扩展php-beast作者博客:http://my.oschina.net/liexusong/blog

如果你在Linux上要使用IDE开发,可以看看Eclipse CDT或者Qt Creator。

构建PHP扩展:
http://wiki.swoole.com/wiki/page/238.html (视频教程)
http://php.net/manual/zh/internals2.buildsys.php
php-src/ext/ext_skel脚本用于生成PECL扩展源码骨架.

PHP扩展是C语言写的,写C语言一般是VC++环境。

这跟PHP扩展有关系吗? 随便你了

用C语言。如果在WIn下需要用VS 来编译

好文收藏了,编辑器都可以吧

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn