0
我需要獲取Google數據存儲中實體的數量。但我無法找到他們的api。有誰知道方法或黑客得到計數使用PHP API?如何使用php api獲取Google數據存儲對象的數量
use Google\Cloud\Datastore\DatastoreClient;
$datastore = new DatastoreClient();
$query = $datastore->query();
$query->kind('Companies');
$query->filter('companyName', '=', 'Google');
$res = $datastore->runQuery($query);
$count = 0;
foreach ($res as $company) {
$count++;
}
echo $count;
有沒有辦法使用php sdk訪問統計信息? –