db_decode_blob

Definition

db_decode_blob($data)
includes/database.pgsql.inc, line 222

Description

Returns text from a Binary Large OBject value.

Parameters

$data Data to decode.

Return value

Decoded data.

Related topics

Namesort iconDescription
Database abstraction layerAllow the use of different database servers using the same code base.

Code

<?php
function db_decode_blob($data) {
  return stripcslashes($data);
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.