gpt4 book ai didi

php - 如何使用 PHP 获取 MySQL 的 'ft_min_word_len' 配置变量的值?

转载 作者:IT老高 更新时间:2023-10-29 00:19:53 24 4
gpt4 key购买 nike

我知道如何正确更改 MySQL ft_min_word_len 配置变量,但我似乎无法在 PHP 和 MySQL 文档中轻松找到(也许我没有使用正确的搜索词)如果有办法使用 PHP 以编程方式获取 ft_min_word_len 的值。如果查询包含比 ft_min_word_len 短的搜索词,我的搜索引擎应该会抛出错误,如果它可以自动执行此操作而无需我记得设置变量,那将会很有帮助。

最佳答案

您可以使用显示变量并从 php 检索其值。

show 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%'

关于php - 如何使用 PHP 获取 MySQL 的 'ft_min_word_len' 配置变量的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5716362/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com