| Versionen | |
|---|---|
| drupal7 | public DatabaseConnection_sqlite::sqlFunctionGreatest() |
SQLite compatibility implementation for the GREATEST() SQL function.
includes/
<?php
public function sqlFunctionGreatest() {
$args = func_get_args();
foreach ($args as $k => $v) {
if (is_null($v)) {
unset($args);
}
}
if (count($args)) {
return max($args);
}
else {
return NULL;
}
}
?>
Kommentare
Kommentar hinzufügen