Habari\SQLiteConnection::replace_concat PHP Метод

replace_concat() публичный Метод

Replaces the MySQL CONCAT function with SQLite-compatible statements
См. также: SQLiteConnection::sql_t()
public replace_concat ( array $matches ) : string
$matches array Matches from the regex in sql_t()
Результат string The replacement for the MySQL SQL
    function replace_concat($matches)
    {
        $innards = explode(',', $matches[1]);
        return implode(' || ', $innards);
    }