我知道如何正确地更改
MySQL的ft_min_word_len配置变量,但是我似乎很难在
PHP& MysqL文档(也许我没有使用正确的搜索字词)是否有办法使用PHP编程获取ft_min_word_len的值.如果查询中包含的搜索字词短于ft_min_word_len,我的搜索引擎会抛出错误,如果没有记住设置变量,它可以自动执行.
您可以使用show变量并从PHP检索其值.
原文链接:https://www.f2er.com/php/132561.htmlshow variables like 'ft_min%'
来自PHP
$query = MysqL_query("show variables like 'ft_min%'") or die(trigger_error()); $num = MysqL_fetch_row($query); echo $num[1];
只要您的信息,即使从information_schema也可以获得此值
select variable_value from information_schema.global_variables where variable_name like 'ft_min%'