PostgreSQL 函数
在线手册:中文 英文
PHP手册

pg_lo_tell

(PHP 4 >= 4.2.0, PHP 5)

pg_lo_tell 返回大型对象的当前指针位置

说明

int pg_lo_tell ( resource $large_object )

pg_lo_tell() 返回当前指针位置(大型对象中从头开始的偏移量)。

参见 pg_lo_seek()


PostgreSQL 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: 返回大型对象的当前指针位置

用户评论:

Marv-CZ (16-Nov-2010 06:26)

Function to take a large object size:

<?php
function pg_lo_size ($lo) {
 
$pos = pg_lo_tell ($lo);
 
pg_lo_seek ($lo, 0, PGSQL_SEEK_END);
 
$size = pg_lo_tell ($lo);
 
pg_lo_seek ($lo, $pos, PGSQL_SEEK_SET);
  return
$size;
}
?>