Tyvärr :
Jag skulle råda dig att analysera resultatet av SHOW CREATE TABLE temporary_table;
För att extrahera endast ENGINE för detta returvärde:
$rset = mysql_query('SHOW CREATE TABLE temporary_table;')
$row = mysql_fetch_array($rset, MYSQL_BOTH);
preg_match('/ENGINE\=(?P<engine>\w+)/', $row[1], $matches);
echo $matches['engine'];