Truncates a large object
$lob
$size
pg_lo_truncate truncates an PgSql\Lob instance.
To use the large object interface, it is necessary to enclose it within a transaction block.
lob
An PgSql\Lob instance, returned by pg_lo_open.
size
The number of bytes to truncate.
Returns true on success or false on failure.
true
false
Example #1 pg_lo_truncate example
<?php $doc_oid = 189762345; $database = pg_connect("dbname=jacarta"); pg_query($database, "begin"); $handle = pg_lo_open($database, $doc_oid, "r"); // Truncate to 0 pg_lo_truncate($handle, 0); pg_query($database, "commit"); echo $data; ?>