wpdb::_do_query()
Internal function to perform the mysql_query() call.
Метод класса: wpdb{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
// private - только в коде основоного (родительского) класса $result = $this->_do_query( $query );
- $query(строка) (обязательный)
- The query to run.
Заметки
- Смотрите: wpdb::query()
Список изменений
С версии 3.9.0 | Введена. |
Код wpdb::_do_query() wpdb:: do query WP 6.2.2
private function _do_query( $query ) { if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) { $this->timer_start(); } if ( ! empty( $this->dbh ) && $this->use_mysqli ) { $this->result = mysqli_query( $this->dbh, $query ); } elseif ( ! empty( $this->dbh ) ) { $this->result = mysql_query( $query, $this->dbh ); } $this->num_queries++; if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) { $this->log_query( $query, $this->timer_stop(), $this->get_caller(), $this->time_start, array() ); } }