| Versionen | |
|---|---|
| drupal7 | public DatabaseConnection_sqlite::sqlFunctionSubstring($string, $from, $length) |
SQLite compatibility implementation for the SUBSTRING() SQL function.
includes/
<?php
public function sqlFunctionSubstring($string, $from, $length) {
return substr($string, $from - 1, $length);
}
?>
Kommentare
Kommentar hinzufügen