ifx_create_blob

(PHP 4, PHP 5 < 5.2.1)

ifx_create_blobBLOB オブジェクトを作成する

説明

ifx_create_blob ( int $type , int $mode , string $param ) : int

BLOB オブジェクトを作成します。

パラメータ

type

1 = TEXT, 0 = BYTE

mode

0 = BLOB オブジェクトはメモリーに内容を保持する, 1 = BLOB オブジェクトはファイルに内容を保持する。

param

mode = 0 の場合: 内容へのポインタ mode = 1 の場合: ファイル文字列へのポインタ

返り値

新規の BLOB オブジェクト ID を返します。 エラーの場合に FALSE を返します。

参考

add a note add a note

User Contributed Notes 1 note

up
0
mazza at radiumsystems dot com dot br
24 years ago
How To ifx_create_blob():

<?php
//1st call it and put result into an array
$blobs[] = ifx_create_blob($type, $mode, $data);
//do it as many times as needed
//then you use it to call ifx_query
ifx_query($stmt, $conn, $cursor, $blobs);
?>
To Top