You are here

public static function Connection::sqlFunctionConcatWs in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php \Drupal\Core\Database\Driver\sqlite\Connection::sqlFunctionConcatWs()

SQLite compatibility implementation for the CONCAT_WS() SQL function.

See also

http://dev.mysql.com/doc/refman/5.6/en/string-functions.html#function_co...

File

core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 221
Contains \Drupal\Core\Database\Driver\sqlite\Connection.

Class

Connection
SQLite implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\Core\Database\Driver\sqlite

Code

public static function sqlFunctionConcatWs() {
  $args = func_get_args();
  $separator = array_shift($args);

  // If the separator is NULL, the result is NULL.
  if ($separator === FALSE || is_null($separator)) {
    return NULL;
  }

  // Skip any NULL values after the separator argument.
  $args = array_filter($args, function ($value) {
    return !is_null($value);
  });
  return implode($separator, $args);
}