是否可以以字节为单位测量数据集?
我正在搜索与计算我在 QuickBase 表上进行的某些调试过程的搜索字节数相同的内容。
数据集可以像操作的结果一样简单
从员工中选择 *
它获取 1000 行,每行 5 列
是否可以在 PHP 应用程序中计算?
我在谷歌搜索时并不是很成功。
有什么建议么?
谢谢。
strlen()返回消耗的字节数,所以你应该能够使用类似的东西:
<?php
// example of what you might get back from a SQL SELECT
$data = array (
array (1, 'foo', 'bar'),
array (2, 'baz', 'biz'),
);
// tally up the byte count for every scalar in the set
$bytes = 0;
array_walk_recursive($data, function ($item) use (&$bytes) {
$bytes += strlen((string)$item);
});
echo $bytes . "\n";
?>