1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-09 16:17:48 +02:00

Introduce apply_queries function

This commit is contained in:
Jakub Vrana
2010-05-17 18:18:32 +02:00
parent c85ef695d0
commit f9bb1c5c64
6 changed files with 26 additions and 66 deletions

View File

@@ -361,6 +361,21 @@ function queries($query = null) {
return $connection->query($query);
}
/** Apply command to all array items
* @param string
* @param array
* @param callback
* @return bool
*/
function apply_queries($query, $tables, $escape = 'table') {
foreach ($tables as $table) {
if (!queries("$query " . $escape($table))) {
return false;
}
}
return true;
}
/** Redirect by remembered queries
* @param string
* @param string