db_decode_blob

Definition

db_decode_blob($data)
drupal/includes/database.mysqli.inc, line 327

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

function db_decode_blob($data) {
  return $data;
}