PHP8 cubrid_send_glo
(PECL CUBRID >= 8.3.0)
cubrid_send_glo — 从 glo 读取数据并将其发送到 std 输出
说明
cubrid_send_glo(resource $conn_identifier, string $oid): int
cubrid_send_glo() 函数用于从 glo 实例读取数据并将其发送到 PHP 标准输出。
参数
conn_identifier
连接标识符。
oid
要从中读取数据的 glo 实例的 Oid。
返回值
true,当进程成功时。
false,当进程不成功时。
示例
示例 #1 cubrid_send_glo() example
<?php
$req = cubrid_execute ($con, "select image from person where id =1");
if ($req) {
list ($oid) = cubrid_fetch($req);
cubrid_close_request($req);
Header ("Content-type: image/jpeg");
cubrid_send_glo ($con, $oid);
}
?>
注释
注意:为了向下兼容,可以使用下列已废弃的别名: cubrid_send_glo()
注意:此函数已从 CUBRID 3.1 中删除。
参见
- cubrid_new_glo() - 创建 glo 实例
- cubrid_save_to_glo() - 将请求的文件保存在 GLO 实例中
- cubrid_load_from_glo() - 从 GLO 实例读取数据并将其保存在文件中