Hello World: 第一个PHP扩展(4)
来源:未知 责任编辑:责任编辑 发表时间:2014-01-20 07:52 点击:次
{
php_printf("Hello World");return;}
这里即是 hello_world 函数的实现。php_printf 的作用是向 SAPI 输出一段字符串,类似于 PHP 语言中的 echo。
接下来还需要将 hello_world 函数注册到 zend_module_entry,这样这个函数才能在 PHP 程序中变成“可见”的。找到
const zend_function_entry hello_functions[]={ PHP_FE(confirm_hello_compiled, NULL)/* For testing, remove later. */{NULL, NULL, NULL}
- 发表评论
-
- 最新评论 更多>>