Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bus error
  • Loading branch information
iroben committed Jan 8, 2016
commit ab1cecf3ac25a5e41eb3fee1bc618ff0fd756331
2 changes: 1 addition & 1 deletion 2.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ zend_hash_find()函数是内核提供的操作HashTable的API之一,如果你
zval **fooval;

if (zend_hash_find(
&EG(active_symbol_table), //这个参数是地址,如果我们操作全局作用域,则需要&EG(symbol_table)
EG(active_symbol_table), //这个参数是地址,如果我们操作全局作用域,则需要&EG(symbol_table)
"foo",
sizeof("foo"),
(void**)&fooval
Expand Down