Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在循环内的一个页面上,我尝试的每个查询都返回 NULL。例如:
<?php global $wpdb; $users=$wpdb->get_results( "SELECT * FROM wp_users" ); echo '<pre>'; var_dump( $data ); ?>
我在这里做错了什么?我尝试什么查询都没有关系......一切都返回NULL
您填写的是 $users 而不是 $data。尝试
echo '<pre>'; print_r( $users );