public static function Connection::sqlFunctionSubstring in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php \Drupal\Core\Database\Driver\sqlite\Connection::sqlFunctionSubstring()
SQLite compatibility implementation for the SUBSTRING() SQL function.
File
- core/
lib/ Drupal/ Core/ Database/ Driver/ sqlite/ Connection.php, line 291
Class
- Connection
- SQLite implementation of \Drupal\Core\Database\Connection.
Namespace
Drupal\Core\Database\Driver\sqliteCode
public static function sqlFunctionSubstring($string, $from, $length) {
return substr($string, $from - 1, $length);
}