Skip to content

Commit 08c240a

Browse files
author
Julien Pauli
committed
New chapters structure
1 parent a9134a4 commit 08c240a

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

Book/php7/extensions_design.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ Contents:
1313

1414
extensions_design/php_lifecycle.rst
1515
extensions_design/extension_skeleton.rst
16+
extensions_design/zend_extensions.rst
1617
extensions_design/globals_management.rst
18+
extensions_design/ini_settings.rst
1719
extensions_design/php_functions.rst
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Declaring and using INI settings
2+
================================
3+
4+
This chapter details how an extension is expected to hook into the main configuration step of PHP, by registering and
5+
making use of INI settings.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Zend Extensions
2+
===============
3+
4+
PHP knows two kinds of extensions :
5+
* The PHP extensions, the most commonly used
6+
* The Zend extensions, more uncommon, allows other hooks
7+
8+
This chapter will detail what are the main differences between Zend extensions and PHP extensions, when you should one
9+
instead of the other, and how to build hybrid extensions, aka extensions being both PHP and Zend at the same time (and
10+
why do that)

0 commit comments

Comments
 (0)