PHP 中有很多可用于脚本的功能。扩展编写者是否可以通过某种方式使用此功能?我真的很想使用多字节函数,但找不到一个例子。
问问题
171 次
1 回答
2
您可以以exif 模块为例。它还依赖于 mbstring 模块并“直接”调用它的函数,即没有类似call_user_function_ex(...)
例如
ZEND_INI_MH(OnUpdateEncode)
{
#if EXIF_USE_MBSTRING
if (new_value && strlen(new_value) && !php_mb_check_encoding_list(new_value TSRMLS_CC)) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Illegal encoding ignored: '%s'", new_value);
return FAILURE;
}
#endif
return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
}
于 2010-10-18T07:49:58.897 回答