From 9a0c143c4f94931fb360fd0a0505abe9b09db40f Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Tue, 2 Sep 2003 09:41:07 +0000 Subject: [PATCH] Steal example from user notes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@139448 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/ibase/functions/ibase-blob-get.xml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/reference/ibase/functions/ibase-blob-get.xml b/reference/ibase/functions/ibase-blob-get.xml index df19f2df82..f0dcec60c9 100644 --- a/reference/ibase/functions/ibase-blob-get.xml +++ b/reference/ibase/functions/ibase-blob-get.xml @@ -1,5 +1,5 @@ - + @@ -19,6 +19,22 @@ This function returns at most len bytes from a BLOB that has been opened for reading by ibase_blob_open. Returns &false; on failure. + + +BLOB_VALUE ); + $blob_hndl = ibase_blob_open( $data->BLOB_VALUE ); + print ibase_blob_get( $blob_hndl, $blob_data[0] ); +?> +]]> + + + Whilst this example doesn't do much more than a 'ibase_blob_echo( $data->BLOB_VALUE )' would do, + it does show you how to get information into a $variable to manipulate as you please.