|
PDO::pgsqlLOBOpen(PHP 5 >= 5.1.2, PECL pdo_pgsql >= 1.0.2) PDO::pgsqlLOBOpen — Opens an existing large object stream Описание
resource PDO::pgsqlLOBOpen
( string $oid
[, string $mode = "rb"
] )
PDO::pgsqlLOBOpen() opens a stream to access the data referenced by oid. If mode is r, the stream is opened for reading, if mode is w, then the stream will be opened for writing. You can use all the usual filesystem functions, such as fread(), fwrite() and fgets() to manipulate the contents of the stream.
Список параметров
Возвращаемые значенияReturns a stream resource on success или FALSE в случае возникновения ошибки. Примеры
Пример #1 A PDO::pgsqlLOBOpen() example Following on from the PDO::pgsqlLOBCreate() example, this code snippet retrieves the large object from the database and outputs it to the browser.
<?php Смотрите также
|
|