Don't trust too much the generated code. It tries to be useful in most of
the situations you might encounter, but automatic code generating will never
- beat a programmer who knows the real situation at hand. axt_skel is generally
+ beat a programmer who knows the real situation at hand. ext_skel is generally
best suited for quickly generating a wrapper for c-library functions you
might want to have available in PHP too.
8. $ make
Repeat steps 3-6 until you are satisfied with ext/$extname/config.m4 and
-step 6 confirms that your module is compiled in PHP. Then, start writing
+step 6 confirms that your module is compiled into PHP. Then, start writing
code and repeat the last two steps as often as necessary.
$warning
eof
convert_to_string_ex(arg);
- len = sprintf(string, "Congratulations, you have successfully modified ext/extname/config.m4, module %s is compiled in PHP", Z_STRVAL_PP(arg));
+ len = sprintf(string, "Congratulations, you have successfully modified ext/extname/config.m4, module %s is compiled into PHP", Z_STRVAL_PP(arg));
RETVAL_STRINGL(string, len, 1);
}
/* }}} */
if (extension_loaded($module)) {
$str = $function($module);
} else {
- $str = "Module $module is not compiled in PHP";
+ $str = "Module $module is not compiled into PHP";
}
echo "$str\n";
?>