I'm not sure what function file_get_html is, as it's not a defined PHP function. Looks like you could use a CSS-style selector there, so perhaps this may work:
table[class~='table-one'][class~='table-six'][class~='timetable']
That would only bring back elements that have all three of those classes. To get a list of anything that has any of them, you may have to run three separate passes of find() and merge the results together.