sqlite_udf_encode_binary()
sqlite_udf_encode_binary - Encode binary data before returning it from an UDF
Syntax
string sqlite_udf_encode_binary (
string $data)
Arguments
- data - The string being encoded.
Description
sqlite_udf_encode_binary() applies a binary encoding to the data so that it can be safely returned from queries (since the underlying libsqliteAPI is not binary safe).
Version
PHP 5, PECL sqlite >= 1.0.0
Return value
The encoded string.