function Connection::sqlFunctionSubstring
SQLite compatibility implementation for the SUBSTRING() SQL function.
File
-
core/
modules/ sqlite/ src/ Driver/ Database/ sqlite/ Connection.php, line 296
Class
- Connection
- SQLite implementation of \Drupal\Core\Database\Connection.
Namespace
Drupal\sqlite\Driver\Database\sqliteCode
public static function sqlFunctionSubstring($string, $from, $length) {
return substr($string, $from - 1, $length);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.