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