Fetch location of MySQL slow query log via PHP

mysql, php

Solution

run this query:

show variables like '%slow%';

Problem

How can I discover the filesystem location of the slow query log from php? I'd like to do this dynamically through a query (if possible, or some other runtime method) as opposed to parsing any my.ini files.

Original source