Bạn có thể sử dụng các biến hiển thị và truy xuất giá trị của nó từ php.
show variables like 'ft_min%'
Từ php
$query = mysql_query("show variables like 'ft_min%'") or die(trigger_error());
$num = mysql_fetch_row($query);
echo $num[1];
Chỉ với thông tin của bạn, bạn có thể nhận được giá trị này ngay cả từ information_schema
select variable_value from information_schema.global_variables
where variable_name like 'ft_min%'