Skip to content

Commit 51236a4

Browse files
committed
Merge branch 'master' of github.com:pangudashu/php7-internal
2 parents bfdd8fd + 06a09de commit 51236a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

3/function_implement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ $greet = function($name)
287287
$greet('World');
288288
$greet('PHP');
289289
```
290-
这里提函数函数只是想说明编译函数时那个use的用法:
290+
这里提匿名函数只是想说明编译函数时那个use的用法:
291291

292292
__匿名函数可以从父作用域中继承变量。 任何此类变量都应该用 use 语言结构传递进去。__
293293

7/func.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const zend_function_entry mytest_functions[] = {
6767
#define ZEND_FENTRY(zend_name, name, arg_info, flags) { #zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags },
6868
#define ZEND_FN(name) zif_##name
6969
```
70-
最后将`zend_module_entry->functions`设置为`timeout_functions`即可:
70+
最后将`zend_module_entry->functions`设置为`mytest_functions`即可:
7171
```c
7272
zend_module_entry mytest_module_entry = {
7373
STANDARD_MODULE_HEADER,

0 commit comments

Comments
 (0)