update : 2015.11.03
php.shukuma.com검색:
|
pg_lo_tell(PHP 4 >= 4.2.0, PHP 5) pg_lo_tell — Returns current seek position a of large object 설명
int pg_lo_tell
( resource
$large_object
)pg_lo_tell() returns the current position (offset from the beginning) of a large object. To use the large object interface, it is necessary to enclose it within a transaction block. 반환값The current seek offset (in number of bytes) from the beginning of the large object. If there is an error, the return value is negative. 예제
Example #1 pg_lo_tell() example
<?php 위 예제의 출력: Seek position is: 50000 변경점
|