PHP笔记网

革命尚未成功,同志仍须努力下载JDK17

作者:Albert.Wen  添加时间:2015-11-28 10:47:44  修改时间:2024-11-22 12:30:51  分类:13.C/C++/Rust  编辑

PHP_FE宏替换过程:

PHP扩展研究之 PHP_FE 宏替换过程:

// zend函数入口
const zend_function_entry helloworld_functions[] = {
    // PHP_FE(array_max,NULL)  // 此处和下面写法效果相等
    {
        "array_max", 
        zif_array_max, 
        NULL, 
        (zend_uint)(sizeof(NULL) / sizeof(struct _zend_arg_info) - 1), 
        0
    },
    PHP_FE_END    /* Must be the last line in helloworld_functions[] */
};

替换之前:

PHP_FE(array_max,NULL)

1次替换:

ZEND_FE(array_max,NULL)

2次替换:

ZEND_FENTRY(array_max, zif_array_max, NULL, 0)

3次替换:

ZEND_FENTRY(array_max, zif_array_max, NULL, 0)

4次替换:

{ 
    'array_max', 
    zif_array_max, 
    NULL, 
    (zend_uint) (sizeof(NULL) / sizeof(struct _zend_arg_info)-1), 
    0 
},