Drupal 7:如何查看节点的数字视图

时间:2014-11-08 20:54:16

标签: drupal-7

我正在使用Drupal 7.启用统计模块后,我会在每个节点下看到它被读取了多少次(例如" 4次读取")。

我需要知道这些观点的位置(例如" 4读取")保存在数据库的表格中?

我需要知道在我的SQL

中使用它的地方

1 个答案:

答案 0 :(得分:1)

此数据存储在数据库表 node_counter ,字段 totalcount

您可以使用函数statistics_get()来获取查看节点的总次数。

示例:

// the node nid
$nid = 1;
// get the node statistics
$node_stats = statistics_get($nid);
// get the count of the node reads
$node_reads = $node_stats['totalcount'];

或者,如果您需要使用SQL代码直接访问它,

SELECT totalcount FROM node_counter WHERE nid = 1;