Skip to content

Commit 163db8b

Browse files
committed
fix error
1 parent 51236a4 commit 163db8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2/zend_constant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PHP中的常量通过`define()`函数定义:
88
define('CONST_VAR_1', 1234);
99
```
1010
### 2.5.1 常量的存储
11-
在内核中常量存储在`EG(zend_constant)`哈希表中,访问时也是根据常量名直接到哈希表中查找,其实现比较简单。
11+
在内核中常量存储在`EG(zend_constants)`哈希表中,访问时也是根据常量名直接到哈希表中查找,其实现比较简单。
1212

1313
常量的数据结构:
1414
```c

0 commit comments

Comments
 (0)