Yoast\WP\Lib
ORM::max() public Yoast 1.0
Tells the ORM that you wish to execute a MAX query.
{} Это метод класса: ORM{}
Хуков нет.
Возвращает
float/Число. The max value of the chosen column.
Использование
$ORM = new ORM(); $ORM->max( $column );
- $column(строка) (обязательный)
- The table column.
Код ORM::max() ORM::max Yoast 15.6.2
public function max( $column ) {
return $this->call_aggregate_db_function( __FUNCTION__, $column );
}