Je kunt showvariabelen gebruiken en de waarde ophalen uit php.
show variables like 'ft_min%'
Van php
$query = mysql_query("show variables like 'ft_min%'") or die(trigger_error());
$num = mysql_fetch_row($query);
echo $num[1];
Ter informatie kunt u deze waarde zelfs uit het information_schema
. halenselect variable_value from information_schema.global_variables
where variable_name like 'ft_min%'