current location: Home > Download > Learning resources > php e-book > Zend API: Deep into the PHP core
![Zend API: Deep into the PHP core](https://img.php.cn/upload/webcode/000/000/000/5a8fe0f5ccd03110.png)
Zend API: Deep into the PHP core
Classify: Learning materials / php e-book | Release time: 2018-02-23 | visits: 2834462 |
Download: 294 |
Latest Downloads
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
24 HoursReading Leaderboard
- 1 币圈交易平台虚拟币app排行榜前十(2025年权威排名)
- 2 2025排名前10的加密货币交易所推荐
- 3 Top cryptocurrency exchanges ranked by trading volume in 2025
- 4 2025 Cryptocurrency Exchange Trust Score Ranking
- 5 币圈交易所app虚拟币软件排行榜top10(2025年最新排名)
- 6 2025全球10大加密货币交易所盘点
- 7 币圈十大交易app平台软件排名榜(2025年最新榜单)
- 8 十大虚拟货币app交易软件 币圈top10的虚拟币交易app排行
- 9 十大交易平台虚拟货币app 世界前十名虚拟货币交易所排行
- 10 十大交易所数字货币软件 世界最大的虚拟货币app交易所排名
- 11 Best Cryptocurrency Exchange in Asia in 2025
- 12 炒币十大交易软件app推荐 炒币交易平台app排行榜前十名
- 13 十大炒币交易app平台排行榜 炒币交易软件2025前十推荐
- 14 Gate.io最新App下载地址
- 15 数字货币app排行榜 盘点十大全球数字货币app2025
Latest Tutorials
-
- Go language practical GraphQL
- 2733 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4113 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2212 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2979 2024-03-29
1. First use ext_skel to create a PHP extended module skeleton:
What should be noted here is that the ext_skel tool is generally in the ext directory of the PHP source code package, but I prefer to put it out, that is, not to create a module in the ext directory of the PHP source code package. Suppose I now create a module in /home/php The module named php_hello
#cd /home/php
#/path/to/ext_skel --extname=php_hello
#cd php_hello
Modify the config.m4 file as follows: Simply remove some dnl comments:
PHP_ARG_WITH(php_hello, for php_hello support,
dnl Make sure that the comment is aligned:
[ --with-php_hello Include php_hello support])
or
PHP_ARG_WITH(php_hello, for php_hello support,
dnl Make sure that the comment is aligned:
[ --with-php_hello Include php_hello support])
This completes the skeleton of an extended module. Take a look at the end of config.m4: PHP_NEW_EXTENSION(php_hello, php_hello.c, $ext_shared) This line specifies the target file that the php_hello module needs to compile, which is php_hello.c
![](/static/newDowns/images/images/book.png)