public static Connection::sqlFunctionSubstringIndex($string, $delimiter, $count)
SQLite compatibility implementation for the SUBSTRING_INDEX() SQL function.
File
- core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 250
Class
- Connection
- SQLite implementation of \Drupal\Core\Database\Connection.
Namespace
Drupal\Core\Database\Driver\sqlite
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | public static function sqlFunctionSubstringIndex( $string , $delimiter , $count ) { // If string is empty, simply return an empty string. if ( empty ( $string )) { return '' ; } $end = 0; for ( $i = 0; $i < $count ; $i ++) { $end = strpos ( $string , $delimiter , $end + 1); if ( $end === FALSE) { $end = strlen ( $string ); } } return substr ( $string , 0, $end ); } |
Please login to continue.