|
PHP5中文手册
pg_lo_import(PHP 4 >= 4.2.0, PHP 5) pg_lo_import — 将文件导入为大型对象 说明
int pg_lo_import
([ resource $connection
], string $pathname
)
在 PHP 4.2.0 版本之前,本函数语法不一样,见如下定义:
int pg_lo_import
( string $pathname
[, resource $connection
] )
pathname 变量指明了要导入为大型对象的文件名。导入成功则返回新建的大型对象的 oid,如果出错则返回 FALSE。 要使用大型对象(lo)接口,需要将其放置在事务块中。
参见 pg_lo_export() 和 pg_lo_open()。 |