1. 程式人生 > >postgresql 插入帶單引號字串問題解決

postgresql 插入帶單引號字串問題解決

0、pg中插入字串時需用單引號包圍起來,如果字串中包含單引號,則會報錯。

1、官方文件指出可將字串中單引號替換為兩個單引號插入即可,插入後內容為單個單引號。

2、php 替換 單單引號為雙單引號

function handapostropheconflict($str) {
    return preg_replace("#'#", "''", $str);
}