PHP8 cubrid_lob_send
(PECL CUBRID >= 8.3.1)
cubrid_lob_send — 读取 BLOB/CLOB 数据并直接发送到浏览器
说明
cubrid_lob_send(resource $conn_identifier, resource $lob_identifier): bool
cubrid_lob_send() 读取 BLOB/CLOB 数据并将其直接传递到浏览器。 若要使用此函数,必须先使用 cubrid_lob_get() 从 CUBRID 获取 BLOB/CLOB 信息。
参数
conn_identifier
连接标识符。
lob_identifier
LOB 标识符。
返回值
成功时返回 true, 或者在失败时返回 false。
示例
示例 #1 cubrid_lob_send() example
<?php
$conn = cubrid_connect ("localhost", 33000, "demodb", "dba");
cubrid_execute($conn,"DROP TABLE if exists doc");
cubrid_execute($conn,"CREATE TABLE doc (id INT, doc_content CLOB)");
cubrid_execute($conn,"INSERT INTO doc VALUES (5,'hello,cubrid')");
$lobs = cubrid_lob_get($conn, "SELECT doc_content FROM doc WHERE id=5");
cubrid_lob_send($conn, $lobs[0]);
cubrid_lob_close($lobs);
cubrid_disconnect($conn);
?>
参见
- cubrid_lob_get() - 获取 BLOB/CLOB 数据
- cubrid_lob_close() - 关闭 BLOB/CLOB 数据
- cubrid_lob_size() - 获取 BLOB/CLOB 数据大小
- cubrid_lob_export() - 将 BLOB/CLOB 数据导出到文件