$db->insertIgnore(
"table_users",
[
['id' => '19', 'name' => 'Frank'],
['id' => '20', 'name' => 'Ted'],
]
);
function($table, array $values = NULL)
{
return $this->insert(\is_array($table) ? array_merge($table, ['ignore' => true]) : $table, $values, true);
}