pg_lo_write
(PHP 4 >= 4.2.0, PHP 5)
pg_lo_write — 向大型对象写入数据
<h3>说明</h3>
int <strong>pg_lo_write</strong>
( resource <code>$large_object</code>
, string <code>$data</code>
)
<p>
<strong>pg_lo_write()</strong> 把 <code>data</code> 参数中的数据尽可能多地写入大型对象并返回实际写入的字节数。如果出错则返回 <strong><code>FALSE</code></strong>。<code>large_object</code> 参数是 pg_lo_open() 函数所返回的大型对象资源号。
</p>
<p>
要使用大型对象(lo)接口,需要将其放置在事务块中。
</p>
<p><strong>Note</strong>:
<p>
本函数以前的名字为 pg_lo_write()。
</p>
</p>
<p>
参见 pg_lo_create() 和 pg_lo_open()。
</p>