Same name in this branch
  1. 4.7.x includes/database.pgsql.inc \db_decode_blob()
  2. 4.7.x includes/database.mysqli.inc \db_decode_blob()
  3. 4.7.x includes/database.mysql.inc \db_decode_blob()
Same name and namespace in other branches
  1. 4.6.x includes/database.pgsql.inc \db_decode_blob()
  2. 4.6.x includes/database.mysql.inc \db_decode_blob()
  3. 5.x includes/database.pgsql.inc \db_decode_blob()
  4. 5.x includes/database.mysqli.inc \db_decode_blob()
  5. 5.x includes/database.mysql.inc \db_decode_blob()
  6. 6.x includes/database.pgsql.inc \db_decode_blob()
  7. 6.x includes/database.mysqli.inc \db_decode_blob()
  8. 6.x includes/database.mysql.inc \db_decode_blob()

Returns text from a Binary Large OBject value.

Parameters

$data: Data to decode.

Return value

Decoded data.

Related topics

1 call to db_decode_blob()
cache_get in includes/bootstrap.inc
Return data from the persistent cache.

File

includes/database.mysqli.inc, line 327
Database interface code for MySQL database servers using the mysqli client libraries. mysqli is included in PHP 5 by default and allows developers to use the advanced features of MySQL 4.1.x, 5.0.x and beyond.

Code

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