Yoast\WP\Lib
ORM::count()
Tells the ORM that you wish to execute a COUNT query.
Метод класса: ORM{}
Хуков нет.
Возвращает
float|int
. An integer representing the number of rows returned.
Использование
$ORM = new ORM(); $ORM->count( $column );
- $column(строка)
- The table column.
По умолчанию: `''`*
Код ORM::count() ORM::count Yoast 24.0
public function count( $column = '*' ) { return $this->call_aggregate_db_function( __FUNCTION__, $column ); }