| Versionen | |
|---|---|
| drupal6 | db_decode_blob($data) |
Returns text from a Binary Large OBject value. In case of PostgreSQL decodes data after select from bytea field.
$data Data to decode.
Decoded data.
includes/
<?php
function db_decode_blob($data) {
return pg_unescape_bytea($data);
}
?>
Kommentare
Kommentar hinzufügen