There was an error while loading. Please reload this page.
1 parent 51236a4 commit 163db8bCopy full SHA for 163db8b
2/zend_constant.md
@@ -8,7 +8,7 @@ PHP中的常量通过`define()`函数定义:
8
define('CONST_VAR_1', 1234);
9
```
10
### 2.5.1 常量的存储
11
-在内核中常量存储在`EG(zend_constant)`哈希表中,访问时也是根据常量名直接到哈希表中查找,其实现比较简单。
+在内核中常量存储在`EG(zend_constants)`哈希表中,访问时也是根据常量名直接到哈希表中查找,其实现比较简单。
12
13
常量的数据结构:
14
```c
0 commit comments