function Connection::sqlFunctionSubstring
SQLite compatibility implementation for the SUBSTRING() SQL function.
File
-
core/
lib/ Drupal/ Core/ Database/ Driver/ sqlite/ Connection.php, line 265
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);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.