pg_unescape_bytea是用來取消 bytea 類型中的字元串轉義。
基本介紹
- 中文名:pg_unescape_bytea
- 說明:string pg_unescape_bytea
- 備註:PostgreSQL 返回用 \
- 提示:需要 PostgreSQL 7.2 或更新版本
pg_unescape_bytea,說明,備註,特別提示,
pg_unescape_bytea
(PHP 4 >= 4.3.0)
pg_unescape_bytea -- 取消 bytea 類型中的字元串轉義
說明
string pg_unescape_bytea ( string data)
pg_unescape_bytea() 將 bytea 數據類型中的字元串取消轉義。返回未轉義的字元串(二進制)。
備註
當 SELECT bytea 類型,PostgreSQL 返回用 \ 前導的八進制位元組值(例如 \032)。用戶需要自行將其轉換回二進制格式。