$ wpdb-> get_row () só retorna uma única linha?
4 respostas
- votos
-
- 2011-04-08
Defato,use
get_row()
somente quando vocêespera obter um resultado,então vocêpode usarget_results()
Indeed, use
get_row()
only when you expect to get one result, else you can useget_results()
-
Para referência,veja https://developer.wordpress.org/reference/classes/wpdb/get_row/ e https://developer.wordpress.org/reference/classes/wpdb/get_results/For reference see https://developer.wordpress.org/reference/classes/wpdb/get_row/ and https://developer.wordpress.org/reference/classes/wpdb/get_results/
- 2
- 2017-06-21
- user51928
-
- 2011-04-08
Existemtrêsmaneiras deextrair dados dobanco de dados.
1.
$wpdb->get_var
: Useissopara obter um único valornatabela dobanco de dados. Como se você quiser contar onúmerototal de comentários. Vocêpodefazer o seguinte caminho:<?php $comment_count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM $wpdb->comments;")); echo '<p>Total comments: ' . $comment_count . '</p>'; ?>
2.
$wpdb->get_row
:para recuperar uma linha detabelainteira,vocêpode usarisso.exemplo:
<?php $thepost = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE ID = 1" ) ); echo $thepost->post_title; ?>
ou
<?php $thepost = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE ID = 1" ), ARRAY_A ); print_r ($thepost); ?>
Usando oparâmetro
ARRAY_A
em get_row,seus dadospostais são retornados como umamatriz associativa. Como alternativa,vocêpode usar oparâmetroARRAY_N
para retornar seus dadospostaisem umamatrizindexadanumericamente.3.
$wpdb->get_results
:padrãoSELECT
As consultas devem usar afunção Get_Resultspara recuperar várias linhas de dados dobanco de dados.<?php global $wpdb; $allposts = $wpdb->get_results( $wpdb->prepare("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish'") ); foreach ($allposts as $singlepost) { echo '<p>' .$singlepost->post_title. '</p>'; } ?>
e vocêprecisa do último,como vocêpodeesperar.
There are three ways to pull data from the database.
1.
$wpdb->get_var
:use this to get a single value from the database table. Like if you want to count the total number of comments. You can do it in following way:<?php $comment_count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM $wpdb->comments;")); echo '<p>Total comments: ' . $comment_count . '</p>'; ?>
2.
$wpdb->get_row
: To retrieve an entire table row you can use this.Example:
<?php $thepost = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE ID = 1" ) ); echo $thepost->post_title; ?>
OR
<?php $thepost = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE ID = 1" ), ARRAY_A ); print_r ($thepost); ?>
By using the
ARRAY_A
parameter in get_row your post data is returned as an associative array. Alternatively, you could use theARRAY_N
parameter to return your post data in a numerically indexed array.3.
$wpdb->get_results
:StandardSELECT
queries should use the get_results function for retrieving multiple rows of data from the database.<?php global $wpdb; $allposts = $wpdb->get_results( $wpdb->prepare("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish'") ); foreach ($allposts as $singlepost) { echo '<p>' .$singlepost->post_title. '</p>'; } ?>
and you need the last one, as you can expect.
-
Exemplos de detalhesmaravilhosos ..Wonderful detail examples..
- 1
- 2013-01-27
- pixelngrain
-
Certo! Por quenão..Sure! why not..
- 0
- 2013-01-28
- pixelngrain
-
- 2011-09-01
$wpdb->get_row('query', output_type, row_offset);
row_offset (inteiro) A linha desejada (0 sendo aprimeira).Padrõespara 0
$wpdb->get_row('query', output_type, row_offset);
row_offset (integer) The desired row (0 being the first). Defaults to 0.
-
- 2016-11-16
minha solução é simples ..
<?php function count_results() { # use the data base global $wpdb; # Query to count all results from one table $sql_count_results = ' SELECT count(*) as count FROM `YOUR_TABLE`;'; # Ejecute function $results = $wpdb->get_row( $sql_count_results , OBJECT ); # Return results return $results->count; }
Use:
<?php echo count_results();
my solution is simple..
<?php function count_results() { # use the data base global $wpdb; # Query to count all results from one table $sql_count_results = ' SELECT count(*) as count FROM `YOUR_TABLE`;'; # Ejecute function $results = $wpdb->get_row( $sql_count_results , OBJECT ); # Return results return $results->count; }
Use:
<?php echo count_results();
-
Seria ótimo se vocêtambémpuderexplicar o queesse código,além depostar.It would be great if you can also explain what this code does in addtion to posting it.
- 4
- 2016-11-16
- bravokeyl
-
Isso conta as linhasem umamesa,não é uma respostapara apergunta da OP.This counts the rows in a table, it is not an answer to the OP's question.
- 0
- 2019-01-15
- alexg
Por que é?Eutentei amesma consultano consolee retornou várias linhas.Aquiestá a consulta:
$this->wpdb->get_row("SELECT * FROM ".$this->wpdb->users." WHERE status = 'active'", ARRAY_A);
Continua retornando amesma linha única quando há vários usuários ativos.Estouperdendo alguma coisa?