PHP 致命错误:调用未定义函数 enchant_broker_init() - 未找到附魔?

PHP 致命错误:调用未定义函数 enchant_broker_init() - 未找到附魔?

我有 php 5.3.10(和 CentOS 6),据我了解附魔自动附带。当我尝试运行如下示例时

$tag = 'en_US';
$r = enchant_broker_init();
$bprovides = enchant_broker_describe($r);
echo "Current broker provides the following backend(s):\n";
print_r($bprovides);

我收到此 php 致命错误:PHP 致命错误:调用未定义的函数 enchant_broker_init()

我也可以在用 phpinfo 输出的 php configure 命令中看到这一点

使用-enchant =共享,/ usr''--with-recode =共享,/ usr'

我是否需要将 sg 添加到 php.ini 中?

答案1

好吧,看来我当时太天真了,因为我在某处读到 enchant 是随 php 5.3 以上版本打包的,但我还是得

yum 安装 php-enchant enchant hunspell

相关内容