0
在PHP腳本中,我需要更新標題,內容字段。 如果我將「@」放入內容中,則會收到錯誤「說明:'@'附近的語法錯誤。」 我固定的符號「」 是否有逃逸或框架DB層的任何解決方案如何在SQL查詢中轉義符號?
我被迫使用f **納克MS SQL :(
代碼:?
$conn = new COM ("ADODB.Connection")
$db_conn = $conn->open('bla-bla-password...');
$query = sprintf("UPDATE page SET title='%s', page_content='%s' WHERE id=%d;", addslashes($title), addslashes($content), intval($id));
$rs = $db_conn->execute($query);
http://stackoverflow.com/questions/574805/how-to-escape-strings-in-mssql-using-php 從快得到這個使用谷歌搜索 – kirilloid 2011-02-07 17:28:24