current location: Home > Download > Learning resources > php e-book > Zend API: Deep into the PHP core

Zend API: Deep into the PHP core
Classify: Learning materials / php e-book | Release time: 2018-02-23 | visits: 2834503 |
Download: 294 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 Just Bought a New Monitor? Don't Make These Mistakes
- 2 How to Get Super Credits in Helldivers 2
- 3 How to Trade Ducks in Murky Divers
- 4 Unlock 2 Fixes for UUID Type Is Not Supported
- 5 Something Is Wrong with One of Your Data Files, Proven Fixes!
- 6 Recommended for commonly used virtual currency exchanges in the 2025 currency circle
- 7 Assassin's Creed Shadows Not Launching? Find Solutions Here
- 8 Learn Where to Find BLEACH Rebirth of Souls Save File Location
- 9 How to fix Task Host is stopping PC from shutting down in Windows?
- 10 Top 10 Virtual Digital Currency Exchanges Latest Currency Trading Platform App Ranking 2025
- 11 Recommended virtual currency exchanges in the currency circle 2025
- 12 Top 10 virtual currency app trading platforms Virtual currency trading platform app authoritative list 2025
- 13 Top 10 Digital Currency Exchange Ranking Latest Virtual Digital Currency Trading Platform App
- 14 Recommended by Virtual Currency Exchange in the Currency Circle 2025
- 15 Which platform exchange for virtual currency is better? Top 10 digital currency trading software recommendations
Latest Tutorials
-
- Go language practical GraphQL
- 3028 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4362 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2355 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3095 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
